Sys.WebForms.PageRequestManagerServerErrorException: .... The status code returned from the server w

Posted by webnoob on Stack Overflow See other posts from Stack Overflow or by webnoob
Published on 2010-03-05T09:44:21Z Indexed on 2010/05/05 4:08 UTC
Read the original article Hit count: 323

Filed under:
|
|

Hi All,

I have seen a few posts regarding this issue but not one specific to my problem and I have no ideas as to what I need to do to debug this.

I have some combo boxes on an aspx pages, when I select a value from the first one, it fills the second with value and so on with the third and fourth. This works with no problems until I wrap an asp.net UpdatePanel around the combo boxes and try to "ajaxify" the whole process so the page isn't dancing around. The exact error I get is:

Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 404

Some things to note:

  1. I am using URL rewriting - This is what I think is causing the problem
  2. The error will occur whenever I choose a selection for a SECOND time. This means that I could select a value from the first combo box and get the same error (so it is happening on the second postback - No matter which combo box it's from).

I have tried setting the EnablePartialRendering="false" on teh scriptmanager but as I said, it works when not using ajax, so I don't know how to debug the issue.

My server is Windows 2008 running IIS& with ASP.NET 2.0.

I would really appreciate your help

Thanks in advance.

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about AJAX