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

常用的httpcontent

时间:2017-12-01 19:38:54      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:login   round   user   span   request   load   style   div   har   

request 获取参数,response 响应, 

    public string getQueryStringString(string obj)
    {
        HttpRequest request = HttpContext.Current.Request;
        return getToString(request.QueryString[obj]);
    }

 这种获取参数的前端写法:

           $.ajax({
                type: ‘post‘,
                url: ‘mobile.ashx?type=login‘,
                data: {
                    "unname": $("#user").val()
                    , "upass": $("#password").val()
                },

  这种获取参数的前端写法:

    public string getFormString(string obj)
    {
        HttpRequest request = HttpContext.Current.Request;
        return getToString(request.Form[obj]);
    }

 

                var test = {
                    "test": picSrc
            , "type": "uploadimg1"
            , "tid": taskID
            , "imgname": $("#imgname" + imgtype).val() + date
                }

HttpContext.Current.Server.MapPath("xxxxxx");

常用的httpcontent

标签:login   round   user   span   request   load   style   div   har   

原文地址:http://www.cnblogs.com/shourenwangzi/p/7943913.html

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