deal.jsp
资源名称:0102010.rar [点击查看]
上传用户:nbluoke
上传日期:2013-08-09
资源大小:4851k
文件大小:1k
源码类别:
教育系统应用
开发平台:
WORD
- <%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
- <%!//处理中文字符串
- public String codeString(String s){
- String str=s;
- try{
- byte b[]=str.getBytes("ISO-8859-1");
- str=new String(b);
- return str;
- }
- catch(Exception e){
- return str;
- }
- }
- %>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
- <title>无标题文档</title>
- </head>
- <body>
- <table width="89%" height="394" border="0">
- <tr>
- <%String str=codeString(request.getParameter("content"));%>
- <%=str%>
- <td width="78%" height="329" align="left" valign="top"> <form name="form1" method="post" action="">
- <textarea name="HtmlContext" cols="60" rows="15" id="HtmlContext"></textarea>
- </form></td>
- <td width="22%"> </td>
- </tr>
- <tr>
- <td height="59"> </td>
- <td> </td>
- </tr>
- </table>
- </body>
- </html>