首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

(急)怎么通过http/https向指定的服务器提交*xml文件(或数据)

2012-02-11 
(急)如何通过http/https向指定的服务器提交*.xml文件(或数据)我想在后台cs代码实现,请问如何做?另外,我该

(急)如何通过http/https向指定的服务器提交*.xml文件(或数据)
我想在后台cs代码实现,请问如何做?
另外,我该如何接受对方给我提交回来的*.xml文件?

请各位帮我一下,我很着急!

[解决办法]
发送:
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load( "xxx.xml ");
Response.ContentType = "text/xml "
Response.Charset = "UTF-8 "
Response.Clear()
xmlDoc.Save(Response.OutputStream)
Response.End()

接收:
xmlDoc.Load(Request.InputStream);
[解决办法]
不明白
楼主是需要和第三方主机交换数据么?
还是只是前台xml需要和后台交互?

前者需要用 System.Net里的组件
后者需要在前台用xmlhttp

热点排行