Web
iteye_11428
这个作者很懒,什么都没留下…
展开
-
利用session实现一次性验证码
<h3>带有验证码的登录页面</h3> <form action="servlet/LogonFormServlet" method="post"> 用户名:<input type="text" name="name"><br> 密码:<input type="pas2009-01-07 15:14:18 · 279 阅读 · 0 评论 -
如何去掉超链接的下划线
<style type="text/css"> <!-- a:link { text-decoration: none;color: blue} a:active { text-decoration:blink} a:hover { text-decoration:underline;color: red} a:visited { tex...2009-01-07 15:15:23 · 943 阅读 · 0 评论 -
IE和firefox浏览器在网页编程方面的区别
1.firefox不支持对象加事件的函数名,如:以下代码在IE中能正常显示,但在firefox中则不能; function.window.onload(){ alert("onload"); } function.window.onload(){ alert("onload"); } 改为用: window.onload = fnShow; ...原创 2009-01-07 15:16:23 · 147 阅读 · 0 评论 -
redirect和forward之区别
1.forward只能将请求转发给同一个web应用中的组件,redirect不仅可以重定向到当前应用程序中的其他资源,还可以重定向到同一个站点上的其他应用程序中的资源,甚至是使用绝对URL重定向到其他站点的资源. 2.redirect浏览器地址栏中显示的URL会发生改变,由初始URL地址变成重定向的目标URL,forward地址栏保持初始的URL地址不变 3.redirect对浏览器的请求直接作出...2009-01-15 09:47:04 · 149 阅读 · 0 评论 -
关于HTTP及XMLHTTP状态代码一览
(一) HTTP 1.1支持的状态代码 100 Continue 初始的请求已经接受,客户应当继续发送请求的其余部分 101 Switching Protocols 服务器将遵从客户的请求转换到另外一种协议 200 OK 一切正常,对GET和POST请求的应答文档跟在后面。 201 Created 服务器已经创建了文档,Location头给出了它的URL。 ...原创 2009-01-15 09:47:46 · 107 阅读 · 0 评论 -
支持中文文件名的jsp下载(已修正BUG版)
down.jsp代码如下: <%@ page contentType="text/html;charset=gbk"%><%@ page language="java" import="java.io.*,java.net.*" pageEncoding="gbk"%><html><head> <tit原创 2011-05-17 16:47:18 · 237 阅读 · 0 评论