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

📄 addsort.jsp

📁 一个用java开发的购物系统。使用tomcat作为服务器,mysql的数据库
💻 JSP
字号:
<%@ page contentType="text/html;charset=GBK" language="java" import="java.sql.*" errorPage="" %>
<%@ include file="conn.jsp"%>
<%
if(session.getAttribute("admin_name")==null){
;}else{
%>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href=../css.css rel=STYLESHEET type=text/css>
</head>
<%
    sql="select * from sort";
rs=mdb.executeQuery(sql);
    
%>


<table border="0" width="100%" cellspacing="1">
  <tr>
    <td width="100%">
      <form method="POST" action="addsort1.jsp">
<input type="hidden" name="options" value>
  <table border="0" cellpadding="0" cellspacing="0" width="95%" align="center">

    <tr>
      <td><div align="center"><center><p>类别: 
<select name="subject" size="1"style="font-size: 9pt">
      
<%
	if(!rs.next())
	     out.print("<option value=>请增加类别");
	else{
		rs.previous();
         while(rs.next()){
			 int sort_id=rs.getInt("sort_id");
			 String sort_name=rs.getString("sort_name");
             out.print("<option value=" +sort_id+">" +sort_name+ "</option>");
		 }
	}
%>
      </select>
      <input type="submit" value="删除" name="B2" onclick="form.options.value='del'" ></td>
    </tr>
    <tr align="center">
      <td><br>
      </td>
    </tr>
    <tr align="center">
      <td><p>新名字:<input type="text" name="reTitle" size="20" class=smallinput>
      <input type="submit" value="改名" name="B1" onclick="form.options.value='rename'">
      </td>
    </tr>
    <tr align="center">
      <td><br>
      </td>
    </tr>
    <tr align="center">
      <td><p>新类别:<input type="text" name="newTitle" size="20" class=smallinput>
      <input type="submit" value="新增" name="B3" onclick="form.options.value='new'"></td>
    </tr>
  </table>
</form>

    </td>
  </tr>
</table>
<% 
   sql="select * from Nsort order by Nsort_id";
   rs=mdb.executeQuery(sql);
%>

<table width="758" border="0" cellspacing="0" cellpadding="0" height="75">
  <tr>
    <td>
<form method="POST" action="addsort2.jsp">
<input type="hidden" name="options" value>
  <table border="0" cellpadding="0" cellspacing="0" width="95%" align="center">
    <tr>
      <td align="center"><hr><b>子专题管理</b></td>
    </tr>
    <tr align="center">
      <td><br>
      </td>
    </tr>
    <tr>
      <td><div align="center"><center><p>子专题: 
<select name="subject" size="1" style="font-size: 9pt">
     
<%
	if(!rs.next())
	     out.print("<option value=>请增加专题");
	else{
		rs.previous();
        while(rs.next()){
			int Nsort_id=rs.getInt("Nsort_id");
			 String Nsort_name=rs.getString("Nsort_name");
             out.print("<option value='" +Nsort_id + "'>" +Nsort_name + "</option>");
		}
	}
%>
      </select>
      <input type="submit" value="删除" name="B2" onclick="form.options.value='del'"></td>
    </tr>
    <tr align="center">
      <td><br>
      </td>
    </tr>
<% 
   sql="select * from sort order by sort_id";
   rs=mdb.executeQuery(sql);
%>

    <tr align="center">
      <td><p>专题修改:<input type="text" name="reTitle" size="20"  class=smallinput>
在 <select name="sort_id" size="1"style="font-size: 9pt">
      
<%
	if(!rs.next())
	     out.print("<option value=>请增加类别");
	else{rs.first();
		rs.previous();
         
         while(rs.next()){
			 int sort_id=rs.getInt("sort_id");
			 String sort_name=rs.getString("sort_name");
             out.print("<option value='" +sort_id+ "'>" +sort_name + "</option>");
		 }
	}
%>
      </select> 中 
      <input type="submit" value="改名" name="B1" onclick="form.options.value='rename'"><br>(请选择上方相应子类别,然后输入新名字和选择类别)
      </td>
    </tr>
    <tr align="center">
      <td><br>
      </td>
    </tr>
    <tr align="center">
      <td><p>新专题:<input type="text" name="newTitle" size="20"  class=smallinput>
      在 <select name="psubject" size="1"style="font-size: 9pt">
      
<%
	if(!rs.next())
	     out.print("<option value=>请增加类别");
	else{rs.first();
		rs.previous();
         
         while(rs.next()){
			 int sort_id=rs.getInt("sort_id");
			 String sort_name=rs.getString("sort_name");
             out.print("<option value='" + sort_id + "'>" +sort_name + "</option>");
		 }
	}
%>
      </select> 中
      <input type="submit" value="新增" name="B3" onclick="form.options.value='new'"></td>
    </tr>
  </table>
</form></td>
  </tr>
</table>
<%
	mdb.Close();}%>

⌨️ 快捷键说明

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