vote up 1 vote down star

If I want to inject a globally scoped array variable into a page's client-side javascript during a full page postback, I can use:

this.Page.ClientScript.RegisterArrayDeclaration("WorkCalendar", "\"" + date.ToShortDateString() + "\"");

to declare and populate a client-side javascript array on the page. Nice and simple.

But I want to do the same from a async postback from an UpdatePanel.

The closest I can figure so far is to create a .js file that just contains the var declaration, update the file during the async postback, and then use a ScriptManagerProxy.Scripts.Add to add the .js file to the page's global scope.

Is there anything simpler? r iz doin it wrong?

flag

2 Answers

vote up 0 vote down check

You could also update a hidden label inside the update panel which allows you to write out any javascript you like. I would suggest though using web services or even page methods to fetch the data you need instead of using update panels.

Example: myLabel.Text = "...."; ... put your logic in this or you can add [WebMethod] to any public static page method and return data directly.

link|flag
Close with the label, but use a literal rather than a label. – Joel Coehoorn Sep 18 '08 at 18:23
This a better solution, forcing me to go all client-side with the array, event, and control, instead of creating a spaghetti string of server-to-client-to-server-to-client-to-server. Thanks. – Noel Oct 7 '08 at 18:36
vote up 2 vote down

Use the static method System.Web.UI.ScriptManager.AddStartupScript()

The script will run on all full and partial postbacks.

link|flag
Thanks for the pointer. This is indeed a better option than what I listed, but it wasn't The True Answer, since it still required me to create and register a javascript block every time I needed to update the array. – Noel Sep 22 '08 at 19:00

Your Answer

Get an OpenID
or

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