c# webcllient 的uploadstring() 方法服务器端如何接收?

时间:2022-03-04 15:53:13
MSDN上写了UploadFile()是怎么接收的,但是没写UploadString()是怎么接收的

5 个解决方案

#1


http://bbs.csdn.net/topics/380195712

#2


Request.Files

#3


string post_date = new StreamReader(Request.InputStream).ReadToEnd();
刚才没看清楚你的意思 c# webcllient 的uploadstring() 方法服务器端如何接收?

#4


引用 1 楼 tg5156 的回复:
http://bbs.csdn.net/topics/380195712


NameValueCollection data = new NameValueCollection();
WebClient wb = new WebClient();
data.Add("key", "Value");
string temp = Encoding.UTF8.GetString(wb.UploadValues(url, "POST", data));

服务器端:
context.Request["key"] 
服务器端的全部代码是什么?不可能就一句

#5


引用 3 楼 haukwong 的回复:
string post_date = new StreamReader(Request.InputStream).ReadToEnd();
刚才没看清楚你的意思


搞定了,服务器能不能“主动”向客户端发送消息?

#1


http://bbs.csdn.net/topics/380195712

#2


Request.Files

#3


string post_date = new StreamReader(Request.InputStream).ReadToEnd();
刚才没看清楚你的意思 c# webcllient 的uploadstring() 方法服务器端如何接收?

#4


引用 1 楼 tg5156 的回复:
http://bbs.csdn.net/topics/380195712


NameValueCollection data = new NameValueCollection();
WebClient wb = new WebClient();
data.Add("key", "Value");
string temp = Encoding.UTF8.GetString(wb.UploadValues(url, "POST", data));

服务器端:
context.Request["key"] 
服务器端的全部代码是什么?不可能就一句

#5


引用 3 楼 haukwong 的回复:
string post_date = new StreamReader(Request.InputStream).ReadToEnd();
刚才没看清楚你的意思


搞定了,服务器能不能“主动”向客户端发送消息?