vote up 8 vote down star

Pardon my ASP ignorance, but what's the difference?

flag

6 Answers

vote up 13 vote down check

<%# %> is invoked during the DataBinding phase.

<%= %> is used to get values from code to the UI layer. Meant for backward compatibility with ASP applications. Shouldn't use in .NET.

<%@ %> represents directives and allow behaviors to be set without resorting to code.

Directives specify settings that are used by the page and user-control compilers when the compilers process ASP.NET Web Forms pages (.aspx files) and user control (.ascx) files.

ASP.NET treats any directive block (<%@ %>) that does not contain an explicit directive name as an @ Page directive (for a page) or as an @ Control directive (for a user control).

@Esteban - Added a msdn link to directives. If you need...more explanation, please let me know.

link|flag
Swait, could you please expound on <%@ %>. I'm not sure I understand what you mean. Thanks! – Esteban Araya Oct 1 '08 at 22:50
Take a peek at any .NET page you have with AJAX or Master Pages. You'll find the <%@ $> directive in there to indicate what pages/libraries should be loaded. – Dillie-O Oct 1 '08 at 22:52
<%= %> is perfectly valid for ASP.NET applications. In fact, it's the only way to get values from code to the UI layer with ASP.NET MVC. If you're using ASP.NET web forms then yes, it is discouraged, but still useful for injecting server side values into javascript. – Kevin Pang Oct 1 '08 at 23:11
vote up 0 vote down

javascript in .aspx that uses a master page.

var e = document.getElementById('<%= lblDescription.ClientID %>');
e.innerHTML = 'getElementById(\'lblDescription\') will be null';
link|flag
vote up 1 vote down

Not entirely related to the question, there's another related notation in asp.net called Expression Builder:

<asp:SqlDataSource ... Runat="server"
 ConnectionString="<%$ ConnectionStrings:Northwind %>"
/>

<asp:Literal Runat="server"
  Text="<%$ Resources:MyResources, MyText %>"
/>

and it's extensible, see http://msdn.microsoft.com/en-us/magazine/cc163849.aspx#S4

link|flag
vote up 3 vote down

See http://weblogs.asp.net/leftslipper/archive/2007/06/29/how-asp-net-databinding-deals-with-eval-and-bind-statements.aspx

As Albert says, it's all to do with parsing databinding statements.

link|flag
vote up 2 vote down

The # version is used while data binding. <%= is just a simple Response.Write

link|flag

Your Answer

Get an OpenID
or

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