In my case, the ScriptManager object was created in the main page file, which was then shared with the content page files. Thus, in order to change the ScriptManager.AsyncPostBackTimeout property on the content page, I had to access the object in the aspx.cs file of the content page:
protected void Page_Load(object sender, EventArgs e) { . . . ScriptManager _scriptMan = ScriptManager.GetCurrent(this); _scriptMan.AsyncPostBackTimeout = 36000; }
narayan Mar 16 '10 at 16:33 2010-03-16 16:33
source share