Upload works but then I receive a parser error exception after redirecting to page to a "File Details" page.

  •  01-05-2009, 12:59 PM

    Upload works but then I receive a parser error exception after redirecting to page to a "File Details" page.

    After the user has uploaded the file.  I display a message that the file has been uploaded sucessfully.  The file gets transferred to my server with correct name and I am able to update my database with the video onformation. 
     
    I then try to redirect to a page to display the details using:
     
     Response.Redirect("ManageMyVideos.aspx?vid=" & NewVideoId)

    where the newvideoid is an integer value.  I get the following error message:
     
    Sys.WebForms.PageRequestManagerParserErrorException.  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, HttpModules, or server trace is enabled.
     
    Details: Error parsing near '
     
    <!DOCTYPE html'.
     
    Help ?!?!
View Complete Thread