请编写两个JSP页面a.jsp和b.jsp。a.jsp页面使用表单提交姓名和密码给b.jsp页
请编写两个JSP页面a.jsp和b.jsp。a.jsp页面使用表单提交姓名和密码给b.jsp页面,b.jsp页面获取a.jsp提交的信息,并显示出来,并且不能出现中文乱码...
请编写两个JSP页面a.jsp和b.jsp。a.jsp页面使用表单提交姓名和密码给b.jsp页面,b.jsp页面获取a.jsp提交的信息,并显示出来,并且不能出现中文乱码情况。
展开
2个回答
展开全部
a.jsp
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Add</title>
</head>
<body>
<table width="139" height="37" border="0" align="center">
<tr>
<th width="133" scope="col">包车盈利登记表</th>
</tr>
</table>
<table width="507" height="75" border="0">
<tr>
<th width="170" height="32" scope="col">负责人</th>
<th width="168" scope="col">盈利</th>
<th width="155" scope="col">Date</th>
</tr>
<tr>
<th height="37" id="Name" scope="row"><input type="text" /></th>
<td id="doller"><input type="text" /></td>
<td id="date1"> <%=now()%></td>
</tr>
</table>
<form id="form1" name="form1" action="<form action="addsave.asp">">
<input type="submit" name="Enter" id="Enter" value="提交" />
</form>
</body>
</html>
这个是b.asp
<%@LANGUAGE="VBScript" codepage="936"%>
<!--#include file="conn.asp"-->
<%
set rs=server.createobject("adodb.recordset")
sql="select Name,doller,date from main"
rs.open sql,conn,1,3
rs.addnew
Name=request.form("Name")
doller=request.form("doller")
date1=request.form("date")
rs("Name")=Name
rs("doller")=doller
rs("date")=Date
rs.update
rs.close
set rs=nothing
conn.close
set rs=nothing
%>
这个是asp写的,基本差不多,把里面的vbscript换成javascript就可以了
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Add</title>
</head>
<body>
<table width="139" height="37" border="0" align="center">
<tr>
<th width="133" scope="col">包车盈利登记表</th>
</tr>
</table>
<table width="507" height="75" border="0">
<tr>
<th width="170" height="32" scope="col">负责人</th>
<th width="168" scope="col">盈利</th>
<th width="155" scope="col">Date</th>
</tr>
<tr>
<th height="37" id="Name" scope="row"><input type="text" /></th>
<td id="doller"><input type="text" /></td>
<td id="date1"> <%=now()%></td>
</tr>
</table>
<form id="form1" name="form1" action="<form action="addsave.asp">">
<input type="submit" name="Enter" id="Enter" value="提交" />
</form>
</body>
</html>
这个是b.asp
<%@LANGUAGE="VBScript" codepage="936"%>
<!--#include file="conn.asp"-->
<%
set rs=server.createobject("adodb.recordset")
sql="select Name,doller,date from main"
rs.open sql,conn,1,3
rs.addnew
Name=request.form("Name")
doller=request.form("doller")
date1=request.form("date")
rs("Name")=Name
rs("doller")=doller
rs("date")=Date
rs.update
rs.close
set rs=nothing
conn.close
set rs=nothing
%>
这个是asp写的,基本差不多,把里面的vbscript换成javascript就可以了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询