I have a question. Is there an advantage to placing c# code inside the html section of an aspx file instead of in the code section? I am talking about including some c# code with the
<% %>
---------------------------------
Ex:
<% if (x > 3)%>
<a href="xxx.aspx?action=action1"> Click Here To... </a>
<% }
%>
<% %>
---------------------------------
Ex:
<% if (x > 3)%>
<a href="xxx.aspx?action=action1"> Click Here To... </a>
<% }
%>