码迷,mamicode.com
首页 > Web开发 > 详细

asp.net处理json数据

时间:2015-11-04 17:15:13      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:

客户端

            $(‘#createAuth‘).click(function () {
                var jsonObj = { id:0, name:‘权限‘ + new Date() }
                $.ajax({
                    type: ‘post‘,
                    url: ‘service/authority/create.ashx‘,
                    data: JSON.stringify(jsonObj),
                    dataType: ‘json‘,
                    success: function (d) {
                        alert(d.Text);
                    }
                });
            });

  

服务端:

            context.Response.ContentType = "application/json";
            context.Response.Cache.SetCacheability(HttpCacheability.NoCache);
            var request = context.Request.InputStream;
            StreamReader sr = new StreamReader(request);
            string json = HttpUtility.UrlDecode(sr.ReadToEnd());
            sr.Close();

  

asp.net处理json数据

标签:

原文地址:http://www.cnblogs.com/ifengqi/p/4936285.html

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