码迷,mamicode.com
首页 > 其他好文 > 详细

cs端调用Ajax

时间:2014-07-23 15:08:06      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   color   os   

bubuko.com,布布扣
 private static string Descoder()
        {
           //ajax地址
            string MealFilePath = "http://***/user/SetWebsite.aspx";

            WebResponse result = null;
            WebRequest req = WebRequest.Create(MealFilePath);
            result = req.GetResponse();
            Stream sr = result.GetResponseStream();
            Encoding encode = System.Text.Encoding.GetEncoding("GB2312");
            StreamReader strAddress = new StreamReader(sr, encode);
            return strAddress.ReadToEnd();
        }
View Code

cs端调用Ajax,布布扣,bubuko.com

cs端调用Ajax

标签:des   style   blog   http   color   os   

原文地址:http://www.cnblogs.com/happygx/p/3862845.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!