up vote 0 down vote favorite
share [g+] share [fb]

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!

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

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

link|improve this answer
feedback

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

link|improve this answer
feedback

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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