⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 deal.jsp

📁 在线考试软件。 在线考试软件详细设计说明书:说明在线测试这一模块各部分的功能和结构
💻 JSP
字号:
<%@ 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%">&nbsp;</td>
  </tr>
  <tr>
    <td height="59">&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
</table>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -