How to echo something in C# in an .aspx file

asp.net, c#

Solution

<% if(Request.Form[0]!=null)
    Response.Write("abc");
%>

Problem

I know you can do this ``` <%= Request.Form[0] %> ``` But how do you do something like this? ``` <% if(Request.Form[0]!=null) echo "abc"; %> ```

Original source