I have a php code which I have converted to asp.net code. The PHP code simply echoes a response which a client reads and interpretes, however in asp.net, the generated output is forced to be in html format -- which is precisely because I'm using asp.net labels to print the output.
Is there a way I can achieve the same thing as the echo in php or is there a very lightweight code that can help me parse the html text properly?
EDIT:
What I'm trying to do is like
//get post data
echo "Some stuff"
My current testing aspx file is:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="grabber.aspx.cs" Inherits="qProcessor.grabber" %>
and the code behind has just one method:
protected void Page_Load(object sender, EventArgs e)
{
//this.Response.Write("Welcome!");
}
Thanks.