views:

31

answers:

1

How can I call javascript function from backend within updatepanel in asp.net.

+2  A: 
ScriptManager.RegisterStartupScript(this,yourUpdatePanel.getType(),"Your js",true);

see http://msdn.microsoft.com/en-us/library/bb310408.aspx

ajay_whiz