String xml = "<data>中文</data>";
String postData = "data=" + Server.UrlEncode(xml); ;
string strUrl = "http://localhost:29833/WebSite1/xx.aspx";
// 准备请求...
HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create(strUrl);
myRequest.Method = "POST";
myRequest.ContentType="application/x-www-form-urlencoded";
myRequest.ContentLength = postData.Length;
Stream newStream=myRequest.GetRequestStream();
byte[] data = Encoding.GetEncoding("GB2312").GetBytes(postData);
// 发送数据
newStream.Write(data,0,data.Length);
HttpWebResponse res = myRequest.GetResponse() as HttpWebResponse;
StreamReader sr = new StreamReader(res.GetResponseStream(), Encoding.UTF8);
String ret = sr.ReadToEnd();
newStream.Close();
Response.Write("你提交的是:" + Server.HtmlEncode( ret));
//==========
接口的接收
Response.ClearContent();
Response.Write(Request.Form["data"]);
Response.End();
from:http://topic.youkuaiyun.com/u/20101117/11/bfee4a29-d966-4870-9026-0243767067a6.html
本文介绍了一种通过HTTP POST请求向服务器提交包含中文字符的XML数据的方法,并展示了如何使用C#来实现这一过程。文章提供了完整的代码示例,包括设置请求头、编码数据以及读取响应。
1289

被折叠的 条评论
为什么被折叠?



