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();
        }

 

posted @ 2017-11-03 10:31  sky20080101  阅读(66)  评论(0)    收藏  举报