MVC/ASP.NET 如何接收XML参数或数据?

有时候,我们接收的XML字符串是来自其他站点,你无法要求人加UrlEncode一下再Post给你。

那你也得读啊,把validate给去了是可不取的,这里有个不错的方法,通杀:

            System.IO.StreamReader reader = new System.IO.StreamReader(Request.InputStream);  

            String xmlData = reader.ReadToEnd();

            string curTxt = HttpUtility.UrlDecode(xmlData);

            System.Xml.XmlDocument doc = new System.Xml.XmlDocument();

感谢以下作者提供的方法~

http://www.cnblogs.com/meteorcui/archive/2006/11/01/2021194.html

你可能感兴趣的:(asp.net)