用asp.net中的参数调用java脚本函数

时间:2012-07-05 04:58:30

标签: javascript asp.net

   <div style="float: left">
                        <a href="javascript:void(0)" onclick="javascript:chatWith('Ankit')">
                            <asp:Label ID="NameLbl2" Text='<%# Eval("Values")  %>' runat="server"></asp:Label></a></div>

这是我在带有java脚本函数onclick="javascript:chatWith('userName')"的转发器中使用的代码,我想在&#34; userName&#34;的位置使用另一个名称。借助&#34; EVAL()&#34;。??????

1 个答案:

答案 0 :(得分:1)

如果userName字段是 dataSource 的成员,则使用Eval()

<a href="javascript:void(0)" 
   onclick=javascript:chatWith('<%# Eval("userName") %>')>
   Someting...
</a>