edit.jsp

来自「精品课程的java源码」· JSP 代码 · 共 71 行

JSP
71
字号
<%@ page language="java" contentType="text/html; charset=gbk" %>
<%@ taglib uri="http://java.fckeditor.net" prefix="FCK" %>

<% 
request.setCharacterEncoding("GBK");
int type =Integer.parseInt(request.getParameter("type"));
String str= " ";
 switch(type){
	case 1:
		str="课程简介";
		break;
	case 2:
		str="负责人介绍";
		break;
	case 3:
		str="教学队伍";
		break;
	case 4:
		str="在线教学";
		break;
	case 5:
		str="教材参考";
		break;
	default:
	     str="未知";
  }
%>

<HTML>
<HEAD>
<TITLE>编辑界面</TITLE>
<LINK REL="stylesheet" TYPE="text/css" HREF="../inc/admin.css">


</HEAD>
<body leftmargin="0" topmargin="0">
<center>
<br>
<h2><%=str%></h2>
<hr>

<form name=form2 method=post action=saveedit.jsp>
<input type="hidden" name="type" value=<%=type%> />
<table width="100%">
<tr>
   <td width="10%">标题:<input type="text" name="title" size="60"></td>
</tr>
</table>
<br>
<table width="100%">
<tr><td width="10%">详细内容:</td>
 </tr></table>

<center>
<FCK:editor instanceName="content" basePath="/fckeditor" value=" " height="500"></FCK:editor>
<INPUT type="submit" value="提 交" class="ButtonStyle"> 
</center>
</form>

<table align="center">
<tr>
<td><font color="#FF0000">注意:标题和详细内容不能为空,否则将不能正确提交!</font>
</td>
</tr>
</table>



</body>
</HTML>

⌨️ 快捷键说明

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