How to echo something in C# in an .aspx file
Posted
by aximili
on Stack Overflow
See other posts from Stack Overflow
or by aximili
Published on 2010-03-17T04:48:09Z
Indexed on
2010/03/17
4:51 UTC
Read the original article
Hit count: 369
I know you can do this
<%= Request.Form[0] %>
But how do you do something like this?
<% if(Request.Form[0]!=null)
echo "abc";
%>
© Stack Overflow or respective owner