Force UpdatePanel Postback example
how to call an asp button_click from JS
http://www.aaronkjackson.com/2009/05/calling-a-button-click-from-javascript-in-aspnet/
now put a button named btnLogin INSIDE the UpdatePanel
what happens is that the btnLogin_Click() calls the submit OF THE BUTTON!
CS:
protected string GetLoginPostBack() {
return Page.ClientScript.GetPostBackEventReference(btnLogin, string.Empty);
}
SCRIPT:
function btnLogin_Click() {
<%= GetLoginPostBack() %>;
}
done :)
now u can call it from anywhere in ur js code to actually force the UPP.
my postback call was right after DB update so i needed a sec, this is the js:
setTimeout(function() {btnSecretPostback_Click();},1250); //mls
*doesnt matter asp or html and u can give him display:none for invisibility, W/O onclick or something like that
http://www.aaronkjackson.com/2009/05/calling-a-button-click-from-javascript-in-aspnet/
now put a button named btnLogin INSIDE the UpdatePanel
what happens is that the btnLogin_Click() calls the submit OF THE BUTTON!
CS:
protected string GetLoginPostBack() {
return Page.ClientScript.GetPostBackEventReference(btnLogin, string.Empty);
}
SCRIPT:
function btnLogin_Click() {
<%= GetLoginPostBack() %>;
}
done :)
now u can call it from anywhere in ur js code to actually force the UPP.
my postback call was right after DB update so i needed a sec, this is the js:
setTimeout(function() {btnSecretPostback_Click();},1250); //mls
*doesnt matter asp or html and u can give him display:none for invisibility, W/O onclick or something like that
Comments
Post a Comment