JSP
Hustudent20080101
MFC Qt 瑞萨 ARM Linux
展开
-
JSP内置对象(9个常用的内置对象)
1.request对象客户端的请求信息被封装在request对象中,通过它才能了解到客户的需求,然后做出响应。它是HttpServletRequest类的实例。序号 方 法 说 明1 object getAttribute(String name) 返回指定属性的属性值2 Enumeration getAttributeNames() 返回所有可用属性名的枚举3 Str转载 2012-10-21 20:53:48 · 642 阅读 · 0 评论 -
JSP九种内置对象
JSP九种内置对象: request, response, out, session, application, config, pagecontext, page, exception.转载 2012-10-21 20:54:33 · 655 阅读 · 0 评论 -
网站上面的文件下载次数如何统计?
点击下载连接,转到Download.ASPX页,然后计数,在转到下载的文件。。代码大致如下:Download.cs 后台码:StreamReader reader = new StreamReader(Server.MapPath("count.txt"));int count = Convert.ToInt32(reader.ReadToEnd().ToString(转载 2016-04-13 21:46:30 · 3363 阅读 · 1 评论