I searched all around, but could not find any reasonable explanation.

I found <%: tag in one of the projects. It works like <%= tag.

I could not find any description on this tag I only found that <%: and <%= are same.

So the question popped out, why could there be two different tags with same functionality? I think there should be some difference.

Could you please clarify it for me.

Thank you

link|improve this question

33% accept rate
feedback

3 Answers

up vote 0 down vote accepted

According to this blog post it is a new feature introduced in ASP.NET 4. It is used to automatically HTML Encode the output.

I suggest to read the full blog post, to see how it works ;)

link|improve this answer
Thank you, I didn't find that post unfortunately on my own :) – To Ka Oct 11 '11 at 10:02
feedback

<%: Performs a HTML Encode on the string you are writing out

Scott Hanselman suggests thinking about the equals sign being closed - like a gate (side on view). He talks about it in this video

ASP.NET MVC 2: Ninja Black Belt Tips

link|improve this answer
feedback

<% %> are Embedded Code Blocks

and

<%= %> are used to Display content from web page.

Moreover you can find all the details about ASP.NET Page Syntax from here.

Hope this helps!!

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.