1.远程服务器返回了意外相应:(413) Request Entity Too
Large修改客户端配置maxReceivedMessageSize="2147483647" 并在服务端修改webconfig,加入binding节...
分类:
其他好文 时间:
2014-05-26 23:10:58
阅读次数:
370
HttpWebRequest request; HttpWebResponse
response; ASCIIEncoding encoding = new ASCIIEncoding(); request = WebRequest...
分类:
Web程序 时间:
2014-05-26 15:49:01
阅读次数:
234
浏览器与服务器间的交互(客服端 服务器) 请求--->处理--->响应
对类HttpContext 内部成员的使用 例如 :Request 、Response 、Cookie 、 Session 、GetSection . .
.///...
分类:
其他好文 时间:
2014-05-26 12:31:20
阅读次数:
273
适配器模式把一个类的接口变换成客户端期待的另一个类的接口,使原本接口不匹配的两个类能够在一起工作。适配器有两张实现形式,分别为类的适配器模式和对象的适配器模式类的适配器模式:我们的目标是将SpecificRequest()转化到Request()。类的适配器解决方案是创建一个类Adaptor继承Ad...
分类:
编程语言 时间:
2014-05-26 09:38:55
阅读次数:
390
写在前面的话XMLHttpRequest对象的open方法的第一个参数为request-type,取值可以为get或post.本篇介绍get请求.get请求的目的,主要是为了获取数据.虽然get请求可以传递数据,但传递数据的目的是为了告诉服务器,给我们什么内容.使用get请求时,参数都是随url进行...
分类:
其他好文 时间:
2014-05-26 07:57:01
阅读次数:
230
假定web application 名称为news,你在浏览器中输入请求路径:
http://localhost:8080/news/main/list.jsp 则执行下面向行代码后打印出如下结果:1、
System.out.println(request.getContextPath()); 打印...
分类:
其他好文 时间:
2014-05-24 08:05:54
阅读次数:
264
///
/// 判断手机用户UserAgent
///
///
private bool IsMobile()
{
HttpContext context = HttpContext.Current;
if (context != null)
{
HttpRequest request = context.Request;
i...
分类:
移动开发 时间:
2014-05-23 01:06:25
阅读次数:
258
话不多少,直接上代码,思路还是挺简单的。
UIWebView *webView = [[UIWebView alloc]initWithFrame:self.view.frame];
// HTML文件来自Project
// 步骤:path - > url - > request with url - > loadRequest
NSStrin...
分类:
编程语言 时间:
2014-05-22 23:53:05
阅读次数:
442
Direct request is the simplest method used to request a semaphore. The request behaves as an atomic read and set operation. The result of a request is either to grant the semaphore
to the requesting...
分类:
其他好文 时间:
2014-05-22 17:21:38
阅读次数:
517
一.什么是Asp.Net页面生命周期当我们在浏览器地址栏中输入网址,回车查看页面时,这时会向服务器端(IIS)发送一个request请求,服务器就会判断发送过来的请求页面,
完全识别 HTTP 页面处理程序类后,ASP.NET 运行时将调用处理程序的 ProcessRequest 方法来处理请求,来...
分类:
Web程序 时间:
2014-05-22 15:30:10
阅读次数:
347