db.util.Dictionary

<%@ page contentType="text/html; charset=gbk" language="java" import="java.sql.*" errorPage="" %>
<%@page import="com.sy.question.model.ZhjzQuestions,java.util.Date"%>
<%@taglib uri="jodd" prefix="jodd"%>
<jsp:useBean id="list" scope="page" class="db.util.Dictionary"/>

<!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=gbk">
<title>综合救助问题登记表 </title>

<style type="text/css">
<!--
.style1 {
font-size: x-large;
font-family: "楷体_GB2312";
color: #0066CC;
}
-->
</style>
<script type="text/javascript">
function checkValue(){
if(document.form1.QuestionTitle.value==""){
alert("问题主题不能为空!");
return  false; 
}else if(document.form1.UserId.value==""){
alert("问题内容不能为空!");
return  false; 
}else if(document.form1.UserId.value==""){
alert("提交用户的姓名不能为空!");
return  false; 
}else{

return true;
}
}
</script>
</head>
<%
ZhjzQuestions zhjzQuestions =new ZhjzQuestions();
zhjzQuestions =(ZhjzQuestions)request.getAttribute("zhjzQuestions");
if(zhjzQuestions!=null){
String questionId=zhjzQuestions.getQuestionId();
String questionType=zhjzQuestions.getQuestionType();
String questionSub=zhjzQuestions.getQuestionSub();
String questionTitle=zhjzQuestions.getQuestionTitle();
String questionContent=zhjzQuestions.getQuestionContent();
String userId=zhjzQuestions.getUserId();
java.util.Date questionDate = zhjzQuestions.getQuestionDate();
String memo1 = zhjzQuestions.getMemo1();
String memo2 = zhjzQuestions.getMemo2();
java.util.Date memo3 = zhjzQuestions.getMemo3();
}
  %>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" background="../images/background/background1.jpg">
<center> <br> <br> <br> <br> <br> <br>
  <span class="style1"> <font color="#ff0000">综合救助问题登记表 </font>
  </span>
<jodd:form beans="zhjzQuestions" scopes="request">
<form name="form1" action=" <%=request.getContextPath()%>/saveQuestion.do?method=save" method="post" onsubmit="return checkValue()">
  <input name="QuestionId" type="hidden" >
  <table width="40%" border="1"  cellpadding="0" cellspacing="0" bordercolor="#6699CC" >
            <tr>
              <td width="32%">问题类型: </td>
              <td width="68%"> <div align="left">
                <select name="QuestionType" size="1" >
              <%=list.getList("008","","")%>                 
                </select>
              </div> </td>
            </tr>
                      </table>
</form>
<a href=" <%=request.getContextPath()%>/saveQuestion.do">查询 </a>
</jodd:form>
</center>
</body>
</html>
红色部分为小弟不明白
请给小弟讲解一下
谢谢