I had this, and got "Howdy, "

<p> Howdy, <% Model.ToString(); %> </p>

I changed it to

<p> Howdy, <%: Model.ToString() %> </p>

and got "Howdy, Chris". (Which is what I expected.) I found several pages that listed the different kinds of inline expressions, but none of the ones that I found listed the one with the colon, and googling "<%:" doesn't seem to find anything ;).

Thanks much

link|improve this question

67% accept rate
feedback

3 Answers

up vote 1 down vote accepted

http://weblogs.asp.net/scottgu/archive/2010/04/06/new-lt-gt-syntax-for-html-encoding-output-in-asp-net-4-and-asp-net-mvc-2.aspx

link|improve this answer
Also, <% %> is just going to evaluate the code inside the block. If you want to display it on the screen, you need <%= or <%: – Nathan Ratcliff Aug 13 '11 at 16:59
feedback
<% string name = "<strong>basilard99</strong>"; %>
Welcome <% name; %>!

Renders Welcome !

Welcome <% Response.Write(name); %>!
Welcome <%= name %>! <!-- Same thing -->

Renders Welcome <strong>basilard99</strong>!

Welcome <% Response.Write(Server.HtmlEncode(name)); %>!
Welcome <%: name %> <!-- Same thing -->

Renders Welcome &lt;strong&gt;basilard99&lt;/strong&gt;!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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