vote up 2 vote down star
1

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);");
flag

Good question, I've found the RegisterStartupScript to be a pain at times! – LFSR Consulting Nov 26 '08 at 15:11
I completely agree – Alexandre Brisebois Oct 13 at 9:08

3 Answers

vote up 0 vote down

I don't remember offhand what is the exact syntax/usage for the Page.ClientScript stuff ... that looks like it should work offhand. But if push comes to shove, just have a simple user control that you can enable/disable dynamically that will write out a javascript method in script blocks after the postback. When the page loads, this script execute whatever functionality you wish to execute.

of course, the question is then, what is it that this javascript should do that you couldn't just do on the serverside via some property or other setting that would reflect in the markup?

link|flag
everything is done via css – Alexandre Brisebois Nov 26 '08 at 15:10
vote up 1 vote down check

Solution

I needed to add the script tags using the following overload.

Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "script", "alert('Success!');", true);

Found : Re: execute javascript after postback

link|flag
vote up 1 vote down

That should work, is it writing your script to the page? use Firebug for Firefox to debug your js and stick some breakpoints on it

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.