5 个解决方案
#1
http://bbs.csdn.net/topics/380195712
#2
Request.Files
#3
string post_date = new StreamReader(Request.InputStream).ReadToEnd();
刚才没看清楚你的意思
刚才没看清楚你的意思
#4
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
搞定了,服务器能不能“主动”向客户端发送消息?
#1
http://bbs.csdn.net/topics/380195712
#2
Request.Files
#3
string post_date = new StreamReader(Request.InputStream).ReadToEnd();
刚才没看清楚你的意思
刚才没看清楚你的意思
#4
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
搞定了,服务器能不能“主动”向客户端发送消息?