编写一个简易的留言薄,实现添加留言和显示留言内容等功能
Posted 风起,唯有努力生存
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编写一个简易的留言薄,实现添加留言和显示留言内容等功能相关的知识,希望对你有一定的参考价值。
<%@ 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="liuyan1.jsp" method="post"> <table align="center" width="450" height="300" border="1"> <tr> <td height="50" align="center" >留言簿 </td></tr> <tr><td height="200"> <textarea name="a" rows="13" cols="60"></textarea></td></tr> <tr> <td align="center"> <input type="submit" value="提交"></td></tr> </table> </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> <form action="liuyan.jsp"> <table align="center" width="450" height="300" border="1"> <tr> <td height="250" align="center" > <% String name=new String(request.getParameter("a").getBytes("ISO-8859-1"),"UTF-8"); out.print(name); %></td></tr> <tr><td height="50" align="center"> <input type="submit" value="返回"> </td></tr> </form> </body> </html>
以上是关于编写一个简易的留言薄,实现添加留言和显示留言内容等功能的主要内容,如果未能解决你的问题,请参考以下文章