首页 > 其他 > 详细

cs端调用Ajax

时间:2014-07-23 15:08:06      阅读:280      评论:0      收藏:0      [点我收藏+]
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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!