vote up 11 vote down star
7

I have been using ASP.NET for years, but I can never remember when using the # and = are appropriate.

For example:

<%= Grid.ClientID %>

or

<%# Eval("FullName")%>

Can someone explain when each should be used so I can keep it straight in my mind? Is # only used in controls that support databinding?

flag

4 Answers

vote up 16 vote down check

<%= %> is the equivalent of doing Response.Write("") wherever you place it.

<%# %> is for Databinding and can only be used where databinding is supported (you can use these on the page-level outside a control if you call Page.DataBind() in your codebehind)

Databinding Expressions Overview

link|flag
vote up 16 vote down

There are a couple of different 'bee-stings':

  • <%@ - page directive
  • <%$ - resource access
  • <%= - explicit output to page
  • <%# - data binding
  • <%-- - server side comment block
link|flag
Very concise, thanks. – KevDog Sep 22 '08 at 15:54
2  
<%$ is not just for resource access, but for ExpressionBuilders - of which ConnectionStrings, AppSettings, and Resource are included in ASP.NET. It's also trivial to write your own. msdn.microsoft.com/en-us/library/… – Mark Brackett Nov 24 '08 at 16:53
1  
Quite a nice explanation here: michielvoo.net/blog/… – Keith Jun 8 at 13:26
vote up 3 vote down

Here's a great blog post by Dan Crevier that walks through a test app he wrote to show the differences.

In essence:

  • The <%= expressions are evaluated at render time
  • The <%# expressions are evaluated at DataBind() time and are not evaluated at all if DataBind() is not called.
  • <%# expressions can be used as properties in server-side controls. <%= expressions cannot.
link|flag

Your Answer

Get an OpenID
or

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