Possible Duplicate:
Meaning of the various symbols in .aspx page of asp.net
I'm familiar with <%= "whatever" %> as a shortcut for <% Response.Write("whatever"); %>.
But I've recently come across some code that uses <%# %> instead. In this particular codebase, it's only being used inside of an <asp:Repeater /> but I
What does <%# %> do and when can/should it be used?