|
发表于 2011-11-2 16:07:46
|
显示全部楼层
Re:菜鸟求教,一个JSP的问题。。。
我以前也遇到这样的问题!刚开始我也不知道为什么,我仔细发现我的代码也没有问题!没有写错代码!
比如说以下的代码:
首先是html文档:
<html>
<head>
<title>ost方法的应用</title>
</head>
<body>
<center>
Post方法的应用,注意看哦!
<form action="smp4.jsp" method=post name=frm>
姓名:<input type=text name=txt>
密码:<input type=password name=pswd>
<input type="submit" value="登录" name=submit1>
<input type="reset" value="重置" name=reset1>
</form>
</center>
</body>
</html>
后面的是一个相对应jsp文件代码:
<%@ page contentType="text/html ; charset=GB2312"%>
<html>
<head>
<title>Post</title>
</head>
<body>
<% request.setCharacterEncoding("gb2312");%>
<center>
Request对象的应用
<%= request.getParameter("txt")%>
请记住您登录的密码:
<%= request.getParameter("pswd")%>
</center>
</body>
运行的时候就出现老兄你那样的情况,原因在于我们编写程序的时候<%@ page contentType="text/html ; charset=GB2312"%>在"text/html后应该就接分号,而不需要空格再加分号!
就这样,如果不清楚!
请发电子邮件:
yinje2005@163.com |
|