I have a bunch of JS on a page and when a certain link is clicked, this is called:
// The args telss me what link is clicked and what page to login to
var pageId = '<%= updateAuth.ClientID %>';
__doPostBack(pageId, args);
UpdateAuth is an update panel like so:
<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
Is there any different way to make this go faster when the user clicks the link to start this process? I am trying to only do an partial page refresh. Thanks.