vote up 8 vote down star
2

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.

flag

This is a dupe for sure but I'm still struggling to find it. – Mehrdad Afshari Sep 8 at 12:48
so many dupes – Will Sep 8 at 12:49
Will: searching for punctuation chars is hard. discussed on meta. – Mehrdad Afshari Sep 8 at 12:50
And what about <%# %> !? That one is just crazy. – Kobi Sep 8 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 at 12:55
show 6 more comments

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

5 Answers

vote up 2 vote down check

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|flag
Thanks for those links. – Josh Sep 9 at 1:46
vote up 32 vote down

<% %> is a generic code block.

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

link|flag
vote up 2 vote down

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

link|flag
vote up 9 vote down

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|flag
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 at 12:57
2  
<% Html.TextBox("txtBox"); %> silently discards the return value and doesn't output anything. – Mehrdad Afshari Sep 8 at 12:59
Thanks for the clarifications – David Andres Sep 8 at 13:05
vote up 6 vote down

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|flag
to complement, <%, <%=, <%-- and <%@ are inherited from classic ASP. <%# is an ASP.NET addition. <%$ was added in ASP.NET 2.0. – Mehrdad Afshari Sep 8 at 13:38

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