I have a page with a few buttons contained in a panel. The buttons will initially be invisible but after some user actions, some of the buttons will be visible. I'm using RadAjaxManager to ajaxify the panel so that the buttons can be visible/invisible.
But one of my buttons need to trigger a downloading of a file, and I need to do a response.write. I did not ajaxify that button, so I assume that it should do a normal non-ajax postback when clicked but it is not working, because I get an ajax error -
Sys.WebForms.PageRequestManagerParserErrorException: The message received from the server could not be parsed
So this means that even though I did not ajaxify that button, but because that button was participating in an ajax response (due to it being invisible then visible) triggered by another control, it became ajaxified??
I have read your documentation on "Exclude controls from ajaxifying" but that only mentioned using RadAjaxPanel. I am using RadAjaxManager. So how do I make it work?
I only got this problem with Prometheus, I used to use the Q1 2007 Asp.Net controls and they work fine.
But one of my buttons need to trigger a downloading of a file, and I need to do a response.write. I did not ajaxify that button, so I assume that it should do a normal non-ajax postback when clicked but it is not working, because I get an ajax error -
Sys.WebForms.PageRequestManagerParserErrorException: The message received from the server could not be parsed
So this means that even though I did not ajaxify that button, but because that button was participating in an ajax response (due to it being invisible then visible) triggered by another control, it became ajaxified??
I have read your documentation on "Exclude controls from ajaxifying" but that only mentioned using RadAjaxPanel. I am using RadAjaxManager. So how do I make it work?
I only got this problem with Prometheus, I used to use the Q1 2007 Asp.Net controls and they work fine.