Click here to Skip to main content
16,005,080 members

Comments by Joachim1234 (Top 4 by date)

Joachim1234 4-Mar-12 15:27pm View    
Does the page work if you remove(disable) all ajax?
You are writing that you tried enablepartialrendering = false, but the message still looks like it's using partial rendering.

Or

Try read this post:
http://bloggingabout.net/blogs/rick/archive/2008/02/20/pagerequestmanagerservererrorexception-status-code-500.aspx
Joachim1234 4-Mar-12 14:49pm View    
Are you sure it isn't javascript you are using, like this:

var myObject;
myObject = new ActiveXObject("Scripting.FileSystemObject");
var f = myObject.GetFile("c:\\test.txt");
f.Delete();

Because this is only supported by IE.

Regards
Joachim
Joachim1234 27-Feb-12 5:33am View    
Could it be the updatepanel Updatemode set to always?
Joachim1234 25-Feb-12 19:10pm View    
Well...I would create a function which creates the report on every postback. If you would like to use viewstate to maintain values etc. it's important to be aware of when the controls are added to the controls collection of the page. You can read more about that here:
http://weblogs.asp.net/infinitiesloop/archive/2006/08/03/Truly-Understanding-Viewstate.aspx

Here's also an artcle on how to work with dynamically created controls:
http://www.dotnetcurry.com/ShowArticle.aspx?ID=135

Regards
Joachim