【发布时间】:2016-12-12 21:26:19
【问题描述】:
我在一个页面上有一堆JS,当点击某个链接时,这被称为:
// The args telss me what link is clicked and what page to login to
var pageId = '<%= updateAuth.ClientID %>';
__doPostBack(pageId, args);
UpdateAuth 是一个更新面板,如下所示:
<asp:UpdatePanel ID="updateAuth" runat="server">
<ContentTemplate>
// Html is here to set up the authentication layer
<asp:UpdatePanel ID="updateLogin" runat="server">
// Login authentication
</asp:UpdatePanl>
// Other panels to create account and change password and forgot password
当用户单击链接开始此过程时,是否有任何不同的方法可以使此过程更快?我试图只进行部分页面刷新。谢谢。
【问题讨论】:
标签: javascript c# asp.net .net webforms