Execute javascript function after asp.net postback without Ajax
Posted
by Alexandre Brisebois
on Stack Overflow
See other posts from Stack Overflow
or by Alexandre Brisebois
Published on 2008-11-26T15:03:58Z
Indexed on
2010/04/28
9:03 UTC
Read the original article
Hit count: 446
I wish to execute a javascript function after asp.net postback with out using ajax.
I've tried the following in my even method with no luck:
Page.ClientScript.RegisterStartupScript(GetType(), "ShowPopup", "showCheckOutPopIn('Livraison',556);");
© Stack Overflow or respective owner