ASP.NET: How to avoid parsing part of a page -
I have an ASP.NET page that has some & lt;% and%> that I do not want ASP for processing How can I specify a .NET Compiler section not parsed?
You can comment like those sections:
& lt;% - (anything to ignore) -%>
Or if you mean that you are literally & lt;% and%> characters in your page, you should always include the & amp; Lt;
and & amp; ; Gt; Instead of
& lt; More>.
Comments
Post a Comment