While editing an aspx file I found both these opening tags used for seemingly the same thing. Is there a difference and if yes, what is it?
|
|
|
|
|
|
|
You can write any content out here: for example
Take a look at MSDN for more information. |
||
|
|
|
The difference is that the # symbol specifies a data binding directive, that is resolved at data binding time (for example, when you call Page.DataBind ) and the = sign specifies an evaluation expression just evaluates and prints to the HTML output when that line is processed. Edit: Just adding that only inside <%# %> you have acces to databinding functions like Eval. |
||
|
|
|
|
<%= is shorthand for Response.Write(). |
||
|
|
