<asp:LinkButton ID="LinkButton1" runat="server" OnClientClick=' update("<%#Eval("XF_PlaceID") %>")'>编辑</asp:LinkButton> 按钮
JS:
//修改弹框使用
function update(ids) {
alert(ids);
window.showModalDialog('Place.aspx?placeid=update&xf_placeid=' +ids, '用户修改信息', 'height=300,width=500,align=center,resizable=no,status=no');
history.go(0);
}
<html xmlns="http://www.w3.org/1999/xhtml" > <head id="Head1" runat="server"> <title></title> <script type="text/javascript"> function set(obj) { alert(obj); } </script> </head> <body> <form id="form1" runat="server"> <div> <asp:LinkButton ID="LinkButton1" OnClientClick="javascript:set('TextBox1')" runat="server">LinkButton</asp:LinkButton> </div> </form> </body>
参考。
里面的动态值怎么传,怎么写呢。
@NET技术员: OnClientClick="return DeleteConfirm(<%#Eval("xxx")%>)"
这种问题也拿出来问,加强基础。
上面回答不是想要的。根本调用不到js方法。自己已经解决