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

js调用ashx文件 2种类型

时间:2014-10-20 09:51:19      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   os   ar   使用   java   for   sp   

js中使用get 的时候, ashx文件中,获取字符串

 

 function check(id, sfsy) {
            $.get(‘/admin/ashx/check.ashx‘, { r: Math.random(), id: id, sfsy: escape(sfsy) }, function (data) {
                switch (data) {
                    case "1":
                        alert("已停止!");
                        break;
                    case "0":
                        alert("已使用!");
                        break;
                }
               

            });
        }
$.get  
 string id = context.Request.QueryString["id"].ToString();
 string sfsy = HttpUtility.UrlDecode(context.Request.QueryString["sfsy"]).ToLower();

  

当使用post的时候,ashx文件中需使用From来获取

 function isHasMsg() {
        
            $.post(‘/admin/ashx/isHasMsg.ashx‘, { gw: escape($("#hid_gw").val()), r: Math.random() },
               function (data) {
                   if (data == "1") {
                    
                   }                  
               })
        } 
$.post 
 gw = HttpUtility.UrlDecode(context.Request.Form["gw"].ToString());

  

 

js调用ashx文件 2种类型

标签:blog   http   io   os   ar   使用   java   for   sp   

原文地址:http://www.cnblogs.com/albertwmm/p/4036439.html

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