These browsers are:
Mozilla (latest version)
Seamonkey (latest version)
Netscape (latest version)
See this error message:
Has anyone encountered the same problems in the mentioned browsers? I couldn't check Mac browsers, any known issues in Mac browsers would be interesting too.
Any other browsers that don't like the asp.net AJAX?
This is normallly because you modify the response by using Response.write.Make sure you use a Literal control instead of using response.write.
Mac browsers will have the same error.
It's also possible that the error is caused by Tracing where the pageoutput is set to true. You must set that to false.
<traceenabled="true"requestLimit="128"pageOutput="false"traceMode="SortByTime"localOnly="false"/>
Hi Richard,
thanks for your reply. So I may not use <%= WhateverString %> neither, right? I can't use Response.Write in my code behind files and neither in the "HTML" source code, is that what you are saying?
Steve
Hi Steve,
Yes that is what I meand. I hope it helped you.
To be clear, <%= is just an alias for Response.Write; so there's no differnece at all once it compiels. If it helps, you *can* use Response.Write, just not inside an UpdatePanel, nor as part of any code that will be subject to responding to an update panel's asynch postback.
No comments:
Post a Comment