10

我创建了一个处理程序,它在完成一些数据库工作后返回整数值。我想知道如何获取该值并通过调用该处理程序将该值分配给 Label。

我用谷歌搜索了它,大多数示例都使用 Jquery.AJAX 调用来检索值。我相信我也可以通过使用它来获得价值。但是对于我公司的一些限制,我只能使用后面的代码。

任何例子都会有所帮助。

Handler: http://somesite.com/Stores/GetOrderCount.ashx?sCode=VIC
which returns: 3

需要将此分配给标签控件

到目前为止,我已经尝试了很多。

HttpWebRequest request = (HttpWebRequest) WebRequest.Create("http://somesite.com/Stores/GetOrderCount.ashx?sCode=VIC");
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
Label1.Text = response.ToString() // this does not work
4

2 回答 2

16

使用WebClient.DownloadString

WebClient client = new WebClient ();
Label1.Text = client.DownloadString ("http://somesite.com/Stores/GetOrderCount.ashx?sCode=VIC");

您也可以使用 ajax 直接调用您的处理程序并更新标签。

这是一个 jQuery 示例:

$.get('Stores/GetOrderCount.ashx?sCode=VIC', function(data) {
  $('.result').html(data);
});
于 2013-01-25T10:33:26.827 回答
5

尝试这个

System.IO.Stream stream = response.GetResponseStream();
System.IO.StreamReader reader = new System.IO.StreamReader(stream);
string contents = reader.ReadToEnd();
于 2013-01-25T10:30:07.910 回答