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

📄 questions_modify.jsp

📁 一个简单博客的软件项目,可以给初学者一个引导
💻 JSP
字号:
<%@ page contentType="text/html; charset=gb2312" language="java" errorPage="" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<jsp:useBean id="lesson" class="com.wgh.dao.TaoTiDAO" scope="page"/>
<jsp:useBean id="taoTi" class="com.wgh.dao.QuestionsDAO" scope="page"/>
<html>
<head>
<title>网络在线考试——后台管理</title>
<link href="../CSS/style.css" rel="stylesheet">
</head>
<script language="javascript">
function checkForm(form){
	if(form.name.value==""){
		alert("请输入考试题目名称!");form.name.focus();return false;
	}
}
function show(val){
		if(val=="单选题"){
		sOption.style.display="";
		mOption.style.display="none";
	}else if(val=="多选题"){
		sOption.style.display="none";
		mOption.style.display="";		
	}
}
</script>
<body>
<%@ include file="top.jsp"%>
<table width="778" border="0" align="center" cellspacing="0" cellpadding="0">
  <tr>
    <td width="176" align="center" valign="top" bgcolor="#FFFFFF"><%@ include file="left.jsp"%></td>
    <td width="602" valign="top" bgcolor="#FFFFFF"><table width="99%" height="487"  border="0" cellpadding="0" cellspacing="0" align="right">
      <tr>
        <td height="30" bgcolor="#EEEEEE" class="tableBorder_thin"><table width="100%" border="0" cellspacing="0" cellpadding="0">
            <tr>
              <td width="78%" class="word_grey">&nbsp;当前位置:<span class="word_darkGrey">考试题目管理 &gt; 修改考试题目 &gt;&gt;&gt;</span></td>
              <td align="right"><img src="../Images/m_ico1.gif" width="5" height="9">&nbsp;当前管理员:<%=session.getAttribute("manager")%>&nbsp;</td>
              </tr>
          </table></td>
        </tr>
      <tr>
        <td align="center" valign="top">
 <table width="100%"  border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td width="84%">&nbsp;      </td>
</tr>
</table> 


<html:form action="/manage/questions.do?action=questionsModify" method="post" onsubmit="return checkForm(questionsForm)">
<bean:define id="lessonID" name="questionsModifyQuery" property="lessonId" type="Integer"/>
<bean:define id="taoTiID" name="questionsModifyQuery" property="taoTiId" type="Integer"/>
<bean:define id="defaultOption" name="questionsModifyQuery" property="type" type="String"/>
	<table width="85%"  border="0" cellpadding="0" cellspacing="0" bordercolor="#FFFFFF" bordercolordark="#D2E3E6" bordercolorlight="#FFFFFF">
    <tr>
      <td height="30" align="left" style="padding:5px;">所属课程:</td>
      <td align="left"><%=lesson.getLesson(lessonID)%></td>
    </tr>
    <tr>
      <td height="30" align="left" style="padding:5px;">所属套题:</td>
      <td align="left" id="subType"><%=taoTi.getTaoTi(taoTiID)%></td>
    </tr>
    <tr align="center">
      <td width="15%" height="30" align="left" style="padding:5px;">考试题目:</td>
      <td width="85%" align="left"><html:text property="subject" size="40" name="questionsModifyQuery"/>
	  <html:hidden property="ID" name="questionsModifyQuery"/>
        * </td>
    <tr>
    <tr>
      <td height="30" align="left" style="padding:5px;">试题类型:</td>
      <td align="left"><html:select property="type" onchange="show(this.value)" name="questionsModifyQuery">
          <html:option value="单选题">单选题</html:option>
          <html:option value="多选题" >多选题</html:option>
        </html:select>      </td>
    </tr>
    <tr align="center">
      <td width="15%" height="30" align="left" style="padding:5px;">选项A:</td>
      <td width="85%" align="left"><html:text property="optionA" size="40" name="questionsModifyQuery"/>
        * </td>
    </tr>
    <tr align="center">
      <td width="15%" height="30" align="left" style="padding:5px;">选项B:</td>
      <td width="85%" align="left"><html:text property="optionB" size="40" name="questionsModifyQuery"/>
        * </td>
    </tr>
    <tr align="center">
      <td width="15%" height="30" align="left" style="padding:5px;">选项C:</td>
      <td width="85%" align="left"><html:text property="optionC" size="40" name="questionsModifyQuery"/>
        * </td>
    </tr>
    <tr align="center">
      <td width="15%" height="30" align="left" style="padding:5px;">选项D:</td>
      <td width="85%" align="left"><html:text property="optionD" size="40" name="questionsModifyQuery"/>
        * </td>
    </tr>
    <tr align="center">
      <td width="15%" height="30" align="left" style="padding:5px;">正确答案:</td>
      <td width="85%" align="left" id="sOption"><html:select property="answer" name="questionsModifyQuery">
          <html:option value="A">A </html:option>
          <html:option value="B">B </html:option>
          <html:option value="C">C </html:option>
          <html:option value="D">D </html:option>
        </html:select>      </td>
      <td width="85%" align="left" id="mOption" style="display:none">
	  <html:multibox property="answerArr" styleClass="noborder" name="questionsModifyQuery">A</html:multibox>
        A
        <html:multibox property="answerArr" styleClass="noborder" name="questionsModifyQuery">B</html:multibox>
        B
        <html:multibox property="answerArr" styleClass="noborder" name="questionsModifyQuery">C</html:multibox>
        C
        <html:multibox property="answerArr" styleClass="noborder" name="questionsModifyQuery">D</html:multibox>
        D </td>
    </tr>
    <tr align="center">
      <td width="15%" height="30" align="left" style="padding:5px;">备注:</td>
      <td width="85%" align="left"><html:text property="note" size="40" name="questionsModifyQuery"/>      </td>
    </tr>
    <tr>
      <td height="65" align="left" style="padding:5px;">&nbsp;</td>
      <td><html:submit property="submit" styleClass="btn_grey" value="保存"/>
        &nbsp;
        <html:reset property="reset" styleClass="btn_grey" value="取消"/>
        &nbsp;
        <html:button property="button" styleClass="btn_grey" value="返回" onclick="window.location.href='questions.do?action=questionsQuery'"/></td>
    </tr>
  </table>
  <script language="javascript">
show("<%=defaultOption%>");
</script>
</html:form></td>
      </tr>
    </table>
</td>
  </tr>
</table>
<%@ include file="copyright.jsp"%>
</body>
</html>

⌨️ 快捷键说明

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