码迷,mamicode.com
首页 > 其他好文 > 详细

11.24作业2

时间:2015-11-25 10:54:18      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:

留言页

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>

<form action="zuoye22.jsp" method="get">
留言簿<br>
<textarea name="liuyan" rows="20" cols="100"></textarea>

<br>

<input name="tijiao" type="submit" value="提交留言"/>

</form>


</body>
</html>

查看页

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>

<%

String s = new String(request.getParameter("liuyan").getBytes("ISO-8859-1"),"UTF-8");

%>
留言簿<br>
<textarea rows="20" cols="100"><%= s %></textarea>

<br>

<a href="zuoye2.jsp"><button>返回</button></a>

</body>
</html>

 

11.24作业2

标签:

原文地址:http://www.cnblogs.com/OldZhao/p/4993810.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!