注册 登录
编程论坛 J2EE论坛

[求助]请问这个错在那里

noshade 发布于 2006-05-22 19:47, 424 次点击
这个怎么还有错误呢。
1 回复
#2
noshade2006-05-22 19:48
[求助]

<%@ page contentType="text/html;charset=gb2312;" %>
<html>
<head>
<title>恭喜您!注册成功。∧_∧</title>
<style>
<!--
body{
background: #cccccc;
color: #ffffff;
margin: 0;
padding: 0;
font-family: serif,Arial;
}
p{
font-family: 宋体;
}
</style>
</head>
<body>
<%
String name=new String(request.getParameter("name1").getBytes("iso-8859-1"),"gb2312");
String pwd=request.getParameter("pwd1");
String age=request.getParameter("age");
String email=request.getParameter("email");
String address=new String(request.getParameter("address").getBytes("iso-8859-1"),"gb2312");
%>
<P>欢迎<%=name%>

<P>您的密码是:<%=pwd%> </p>

<P>您的年龄是:<%=age%> </p>

<P>您的E-mail是:<%=email%> </p>

<P>您的住址是:<%=address%> </p>
</body>
</html>

1