<body>
  <jsp:useBean id="catalog_name" scope="page" class="tables.Catalog" />
  <%!String Catalog_name; Vector<Object> v;%>
  <%v=catalog_name.queryCatalog_name(); %>
 <form name="addBoard" action="<%=path %>/servlet/addBoardServlet" method="post">
 <table align=center>
  <tr>
    <th>隶属栏目名:</th>
    <td>
<select name="catalog_name">
<% 
while(!v.isEmpty())
{
Catalog_name=(String)v.remove(0);
%>
<option value="<%=Catalog_name %>"><%=Catalog_name%></option>
<%
}
%>
</select>
</td>
  </tr>
  <tr>
   <th>版块名称:</th>
   <td><input type="text" name="name" style="width:500px;height:30px;" ></td>
  </tr>
  <tr>
   <th>版块描述:</th>
   <td><textarea name="descrip" rows="4" cols="60" ></textarea></td>
  </tr>
  <tr>
   <th>版块类型:</th>
   <td><input type="text" name="type" style="width:500px;height:30px;"></td>
  </tr>
  <tr>
   <td colspan=2 align=right><input type=submit value="提交"></td>
  </tr>
</table>
    </form>
  </body>
在servlet中,是用request.getParameter("catalog_name");获取的。
请帮忙给点指示,谢谢... ...