<asp:TextBox><asp:LinkButton>服务器控件,执行后台方法,会回调加载js,相当于页面重新加载,刷新页面
<input button>不能直接调用后台方法
所以可以用ajax解决
<asp:TextBox><asp:LinkButton>服务器控件 OnClientClick="test();return false;"
通过js方法test()写ajax 调用后台方法 return false;就不会刷新页面
<asp:TextBox><asp:LinkButton>服务器控件,执行后台方法,会回调加载js,相当于页面重新加载,刷新页面
<input button>不能直接调用后台方法
所以可以用ajax解决
<asp:TextBox><asp:LinkButton>服务器控件 OnClientClick="test();return false;"
通过js方法test()写ajax 调用后台方法 return false;就不会刷新页面