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

📄 moveclass.asp

📁 购物系统(本版为正式商业版
💻 ASP
字号:
<!--#include file="conn.asp"-->
<!--#include file="adminset.asp"-->
<%if session("admin")="" then
response.Write "<script language='javascript'>alert('网络超时或您还没有登陆!');window.location.href='login.asp';</script>"
response.End
end if
'if session("flag")>1 then
'response.Write "<div align=center><font size=80 color=red><b>您没有此项目管理权限!</b></font></div>"
'response.End
'end if
'if qx2<>1 then
'response.Write "<div align=center><font size=80 color=red><b>您没有此项目管理权限!</b></font></div>"
'response.End
'end if
%>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../css.css" rel="stylesheet" type="text/css">
</head>

<body>
<table width="100%" border="0" cellpadding="0" cellspacing="0" background="images/right_top2.gif">
  <tr>
    <td width="1%">&nbsp;</td>
    <td width="99%"><table width="100%" border="0" cellspacing="0" cellpadding="5">
        <tr>
          <td width="30%" style="font-size:14px;color:#ffffff">&nbsp;<strong><font color="#000000">商品类别转移</font></strong></td>
          <td width="70%" align="right">&nbsp;</td>
        </tr>
    </table></td>
  </tr>
</table>
<p><br>
</p>
<table width="90%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#9DB2D4">
  <form name="form1" method="post" action="savemoveclass.asp">
    <tr bgcolor="#F0F3F8">
      <td width="40%"><div align="center">请选择您要转移的子类:</div></td>
      <td width="60%"><select name="xclassid" size="1" class="wenbenkuang" id="xclassid" >
        <%set rs=server.CreateObject("adodb.recordset")
                rs.Open "select id,xclass from shop_xclass order by id",conn,1,1
                if rs.EOF and rs.BOF then
                response.Write "<option value=0>还没有分类</option>"
                else
                do while not rs.EOF
                %>
        <option value="<%=int(rs("id"))%>"><%=trim(rs("xclass"))%></option>
        <%rs.MoveNext
                loop
                rs.Close
                set rs=nothing
                end if%>
      </select>
      </td>
    </tr>
    <tr bgcolor="#F0F3F8">
      <td><div align="center">请选择您要转移的小类:</div></td>
      <td width="60%">        <select name="nclassid" size="1" class="wenbenkuang" >
          <%set rs=server.CreateObject("adodb.recordset")
                rs.Open "select nclassid,nclass from shop_nclass order by nclassid",conn,1,1
                if rs.EOF and rs.BOF then
                response.Write "<option value=0>还没有分类</option>"
                else
                do while not rs.EOF
                %>
          <option value="<%=int(rs("nclassid"))%>"><%=trim(rs("nclass"))%></option>
          <%rs.MoveNext
                loop
                rs.Close
                set rs=nothing
                end if%>
        </select></td>
    </tr>
    <tr bgcolor="#F0F3F8">
      <td><div align="center">请选择所属大类:</div></td>
      <td>
        <select name="anclassid" size="1" class="wenbenkuang">
          <%set rs=server.CreateObject("adodb.recordset")
                rs.Open "select anclassid,anclass from shop_anclass order by anclassidorder",conn,1,1
                if rs.eof and rs.bof then
                response.Write "<option value=0>还没有分类</option>"
                else
                do while not rs.eof
                %>
          <option value="<%=int(rs("anclassid"))%>"><%=trim(rs("anclass"))%></option>
          <%rs.movenext
                loop
                rs.close
                set rs=nothing
                end if%>
        </select>
      </td>
    </tr>
    <tr bgcolor="#F0F3F8">
      <td height="30" colspan="2">
        <div align="center">
          <input type="submit" name="Submit" class="go-wenbenkuang" value="确定转移">
      </div></td>
    </tr>
  </form>
</table>
<p>&nbsp;</p>
<!--#include file="copyright.asp"-->
</body>
</html>

⌨️ 快捷键说明

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