G
greg
I put the following code in Page_Load:
private void Page_Load(object sender, System.EventArgs e)
{
String res = "1";
Response.ContentType = "text/plain";
Response.Write(res);
Response.End();
}
But for some reason it tries to download aspx file ITSELF!!!!!!!!!!!!!!!!!!
What am I doing wrong!!!!!!!!!!!!!!!
Thanks,
GSL
private void Page_Load(object sender, System.EventArgs e)
{
String res = "1";
Response.ContentType = "text/plain";
Response.Write(res);
Response.End();
}
But for some reason it tries to download aspx file ITSELF!!!!!!!!!!!!!!!!!!
What am I doing wrong!!!!!!!!!!!!!!!
Thanks,
GSL