#region HttpRequestGet public string
HttpRequestGet(string url) { return HttpRequestGet(url,
WebRequestMethods.Http.Get, "...
分类:
Web程序 时间:
2014-05-29 09:37:17
阅读次数:
307
///
/// 判断手机用户UserAgent
///
///
private bool IsMobile()
{
HttpContext context = HttpContext.Current;
if (context != null)
{
HttpRequest request = context.Request;
i...
分类:
移动开发 时间:
2014-05-23 01:06:25
阅读次数:
258
我们在ASP.net中使用URL导向后,
我们在访问某个地址,或者打开某个系统页面的时候,就会报错误:A potentially dangerous Request.Path value was
detected from the clientat System.Web.HttpRequest.Va...
分类:
其他好文 时间:
2014-05-18 20:06:41
阅读次数:
379
response 为HttpResponse对象,request为HttpRequest对象
Cookies 设置Cookies response.set_cookie("cookie_key","value") 获取Cookies value =
request.COOKIES["cookie_k...
分类:
其他好文 时间:
2014-05-16 01:01:02
阅读次数:
299
今天上班接着往下进行项目,后来发现出现了难点 需求: 获得用户登录的ip地址 网上查了很多
最后决定用HttpRequest.getRemoteAddr(); //本人技术有限 刚刚工作一个月 所以暂时不考虑用户使用了能够更换ip的软件
但是难点在于项目是 基于cxf的webService开发 前....
分类:
Web程序 时间:
2014-05-08 14:02:54
阅读次数:
488