PageRequestManagerParserErrorException

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Jones

    #1

    PageRequestManagerParserErrorException

    Hello,

    I have an ajax enabled application with a master page and am also
    using ajax extensions update panel. On my page I've got a grid view
    that's connected to an objectdatasourc e which is pointing to a sql
    database. I've also got a dropdownlist box which servers as a filter
    when selected. I'd like to save this selection to session variable so
    that when the user goes to other pages and then comes back the filter
    is saved. However, the first time I make a selection and try to set
    the session variable in the SelectedIndexCh anged event
    (Session["SelectedCatego ry"] = (sender as DropDownList).T ext;) I get
    the following error:

    Sys.WebForms.Pa geRequestManage rParserErrorExc eption: The message
    received from the server could not be parsed. Common causes for this
    error are when the response is modified by calls to Response.Write( ),
    response filters, HttpModuels, or server trace is enabed.
    Details: Error parsing near '</TBODY></TABLE>
    | <html>
    <head>
    '
    ..


    After this occurs I can move to other pages and then come back and the
    dropdownlist and filter works ok. However, my session variable still
    doesn't always save properly and is sometimes cleared out and the
    filter is not saved when I come back to that page.

    Anyone know what these issues might be?

    Thanks,

    Gary Jones

  • Jones

    #2
    Re: PageRequestMana gerParserErrorE xception

    I found this link through the Ajax forum. There are many discussion of
    this issue there, that should help anyway solve this problem.



    Comment

    Working...