vote up 0 vote down star

I use ScriptManager.RegisterStartupScrit from Page_Load and it works perfect.

When I move the same line to the Page_Unload event, it doesn't work; the script is not registered.

Any suggestions??

flag

Why would you be trying to register a startup script when the page is unloading? – CAbbott Sep 1 at 13:37
I want to enter scripts according to what happens during the Button_Click etc. events. I wouldn't really care to do it in another way, but it has to be done outside the Page_Load. – Shimmy Sep 1 at 13:40

1 Answer

vote up 2 vote down check

The Page_Unload event is called after the page is created and the html is outputted. The event is meant to be used to clean up any resources that must be freed by the page.

Why are you calling ScriptManager.RegisterStartupScript here?

EDIT: See here for an overview over the page life cycle of an ASP.Net page. It should help you to determine where to place your code. Most likely the last time you can call ScriptManager.RegisterStartupScript is at the Page_PreRender event.

link|flag
I want to enter scripts according to what happens during the Button_Click etc. events. – Shimmy Sep 1 at 13:39
PreRender is after the control events have been handled, so you can probably run your code there – Rune Grimstad Sep 1 at 13:40
This is the answer. Please update your original answer, and I will mark it. – Shimmy Sep 1 at 13:44
It's already there. See the last sentence :-) – Rune Grimstad Sep 1 at 13:46
Oh :) Now I see it... – Shimmy Sep 1 at 13:50

Your Answer

Get an OpenID
or

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