up vote 12 down vote favorite
2
share [g+] share [fb]

Possible Duplicates:
What is the difference between <% %> and <%=%>?
C# MVC: What is the difference between <%# and <%=

I'm so confused with this.

Please explain the difference between this if possible..

What is the significance of that "=" there?

Edit:Thanks for all your answers.Please understand that It was hard to get any results by searching for "<%=" on google and on the search bar in stackoverflow as well.

link|improve this question

This is a dupe for sure but I'm still struggling to find it. – Mehrdad Afshari Sep 8 '09 at 12:48
so many dupes – Will Sep 8 '09 at 12:49
Will: searching for punctuation chars is hard. discussed on meta. – Mehrdad Afshari Sep 8 '09 at 12:50
And what about <%# %> !? That one is just crazy. – Kobi Sep 8 '09 at 12:53
Kobi: hopefully, in ASP.NET MVC, we don't see that one most of the time! Also, there's <%$ %>. – Mehrdad Afshari Sep 8 '09 at 12:55
show 6 more comments
feedback

closed as exact duplicate by Richard, Kobi, Rex M, Alex, Pavel Minaev Sep 9 '09 at 1:48

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ.

5 Answers

up vote 2 down vote accepted

This post lists all the varieties nicely: ASP.NET "special" tags.

I would normally post this as a comment but there are a number of other dupes. I recall someone referring to them as "bee stings" (not official terminology) and the keywords I used to search for them were asp.net bee stings.

That said, here are some other dupes:

link|improve this answer
Thanks for those links. – Josh Sep 9 '09 at 1:46
feedback

<% %> is a generic code block.

<%= expression %> is equivalent to <% Response.Write(expression); %>.

link|improve this answer
feedback

It is confusing, and it takes a good deal of repetition to get comfortable with.

The <%= syntax is used for evaluating expressions whose returned values are intended to be included within HTML markup. For example:

<%= DateTime.Now.ToShortDateString() %>

This will include the current date in the HTML markup.

The <% is for inline statements, where you want to execute one or more commands at a specific point during the page rendering. I've used Html Helpers in the past by executing the helper method using <%. For example,

<% Html.TextBox("txtBox"); %>

Note that the statements used here have to be terminated with a semicolon in C# code.

EDIT: Removed erroneous details about Html helpers and void returns.

link|improve this answer
Actually, almost all of the Html Helpers return a string rather than writing to the Response object - <%= Html.TextBox("txtBox") %>. This allows you to e.g. nest helper methods. – Iain Galloway Sep 8 '09 at 12:57
3  
<% Html.TextBox("txtBox"); %> silently discards the return value and doesn't output anything. – Mehrdad Afshari Sep 8 '09 at 12:59
Thanks for the clarifications – David Andres Sep 8 '09 at 13:05
feedback

Mehrdad's comment about <%$ piqued my curiosity, so I found this inline asp.net tags list by googling "asp.net inline code" (sans quotes). It has msdn links and descriptions of all the inline tags (<%, <%=, <%#, <%$, <%@, <%--).

link|improve this answer
to complement, <%, <%=, <%-- and <%@ are inherited from classic ASP. <%# is an ASP.NET addition. <%$ was added in ASP.NET 2.0. – Mehrdad Afshari Sep 8 '09 at 13:38
feedback

<%= %> tag prints the output of the code in it, <% %> just runs the code.

link|improve this answer
feedback

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