常用的httpcontent
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常用的httpcontent相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章