2012-07-05 148 views
1
<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')"的代碼,我想用另外的名字在「username」的地方的幫助「EVAL()」。調用Java腳本函數

回答

1

如果userName字段是的dataSource的部件然後使用​​:

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