string str = Request.Form["loc"];
protected void Page_Load(object sender, EventArgs e) { string str = Request.Form["loc"]; Response.Clear(); Response.ContentType = "text/plain"; Response.Write(str); Response.End(); }
protected void Page_Load(object sender, EventArgs e) { string str = Request.Form["loc"]; Response.Clear(); Response.ContentType = "text/plain"; Response.Write(str); Response.End(); }