<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;。??????
答案 0 :(得分:1)
如果userName
字段是 dataSource 的成员,则使用Eval()
:
<a href="javascript:void(0)"
onclick=javascript:chatWith('<%# Eval("userName") %>')>
Someting...
</a>