vote up 0 vote down star

From the blog of the creator of the error message, if you mix Response.Write (among other things) with an UpdatePanel you will likely get PageRequestManagerParserErrorException errors. I was wondering, is it ok to mix UI.HtmlTextWriter and UpdatePanels? My guess would be that it would not be ok, but I'm not sure. With the limited testing I've done so far, it seems ok. Does anybody know for sure? Thanks!

flag

3 Answers

vote up 1 vote down check

HtmlTextWriter is how every control writes its output via the Render method, so, yeah, it's fine. Otherwise no control would render.

link|flag
vote up 1 vote down

I would suggest isolating the dynamic response.write code into your code-behind and inject it into a placeholder.

link|flag
vote up 0 vote down

In Ra-Ajax we've got a "special stream" which you can write stuff to. Though this "stuff" needs to be JavaScript to be executes back on the client. I am not sure if ASP.NET AJAX have something similar...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.