本文介绍了如何在ASHX aps.net中接收使用UploadString发送的字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好

我在我的客户端应用程序中使用WebClient中的UploadString方法发送我的字符串

Hi everyone
I Send my string with UploadString method in WebClient in my client app

Dim response As String = MyWebClient.UploadString("http://localhost:1062/recivedata.ashx", "POST", "This is a string test")



但我如何在服务器的ASHX页面中收到它?

谢谢。


But how can i receive it in my ASHX page in server?
Thanks.

推荐答案

public void ProcessRequest(HttpContext context)
     {
         var requestInputStream = new StreamReader(HttpContext.Current.Request.InputStream);
         var requestContent = requestInputStream.ReadToEnd();
         requestInputStream.Close();
     }


这篇关于如何在ASHX aps.net中接收使用UploadString发送的字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-01 14:26