我正在尝试将通用处理程序的输出绑定到标签。让它变得简单。我的处理程序只写“Hello World”字符串。
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "text/plain";
context.Response.Write("Hello World");
}
我想将此绑定到 aspx 页面中的某个标签。我正在尝试这段代码,但它不起作用。
HttpWebRequest request = (HttpWebRequest)WebRequest.Create("../Handler1.ashx");
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
using (response)
{
StreamReader reader = new StreamReader(response.GetResponseStream());
reader.ReadToEnd();
Label1.Text = reader.ReadLine();
}
它会引发错误的错误 Uri。感谢您的想法和评论。:)