This function is an alias forapache_request_headers(). Please read theapache_request_headers()documentation for more information on how this function ...
分类:
Web程序 时间:
2014-06-29 00:34:44
阅读次数:
288
做了2个action,其中一个运行没有问题,另一个报错,看下面的报错信息,再看了看struts.xml,因为没有给GetBooks这个action配置actionform,所以就导致报null。下面是有问题的struts.xml,其中主要的问题就是没有给GetBooks这个action配置actio...
分类:
编程语言 时间:
2014-06-21 10:58:41
阅读次数:
406
public ActionResult GetForm() { HttpRequest request = System.Web.HttpContext.Current.Request; HttpFileCollection FileCollect = request.Files; if (Fi.....
分类:
其他好文 时间:
2014-06-21 08:15:22
阅读次数:
279
客户端代码 1 服务器端代码 1 protected void Page_Load(object sender, EventArgs e) 2 { 3 string res; 4 Request.ContentEncoding = ...
分类:
Web程序 时间:
2014-06-21 07:28:45
阅读次数:
187
Request.Url.PathAndQuery public RedirectResult AddToCart(Cart cart, int productId, string returnUrl) { Product product = this...
分类:
Web程序 时间:
2014-06-21 00:56:57
阅读次数:
265
///一般处理程序 string action = context.Request["action"]; var adapter= new T_UserTableAdapter(); ...
分类:
其他好文 时间:
2014-06-18 08:54:47
阅读次数:
183
servlet:
public class UpAndDownServlet extends HttpServlet {
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setCon...
分类:
其他好文 时间:
2014-06-18 06:24:27
阅读次数:
205
首先必须要了解客户端跳转和服务器端跳转的区别:
客户端跳转: response.sendRedict(String path),地址栏发生改变。不能传递request属性。
服务器端跳转: 地址栏不发生改变。能传递request属性。
request属性范围: 只有在服务器端跳转以后,所有设置的内容才会停留下来。
session属性范围: 不管是客户端跳转还是服务器端跳转,只要是是属性设...
分类:
编程语言 时间:
2014-06-17 22:27:29
阅读次数:
331
Spring 默认创建的对象是单例模式的对象
设置Bean的作用域,通过Bean元的Scope属性
Scope取值范围:
Singleton:单例
proptotype:非单例
Request:创建该Bean,并调用request.setAttribute(“beanId”,beanObj);
Session:创建该Bean,并调用request.get...
分类:
编程语言 时间:
2014-06-17 22:11:13
阅读次数:
313
我的第一个Nodejs程序:Hello World var http = require("http");http.createServer(function(request, response) { response.writeHead(200, {"Content-Type": "text/.....
分类:
Web程序 时间:
2014-06-17 19:59:52
阅读次数:
241