标签:
|
1
2
3
4
5
6
7
8
9
10
11
12
|
$(‘#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); } });}); |
|
1
2
3
4
5
6
|
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(); |
标签:
原文地址:http://www.cnblogs.com/ruishuang208/p/4956155.html