📄 merge.asp
字号:
<!--#include file="../Session.asp"-->
<html>
<head>
<title>类别管理</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../../css/site.css" rel="stylesheet" type="text/css">
</head>
<body>
<form name="from1" method="post" action="../Sorry.asp">
<table width="100%" border="0" cellpadding="1" cellspacing="0">
<tr align="center">
<td height="50" colspan="2" class="tdstyle"><strong><font color="#000000" size="3">合并主分类</font></strong></td>
</tr>
<tr valign="middle">
<td width="50%" height="25" align="right" class="tdstyle">原主分类1:</td>
<td width="50%" height="25" class="tdstyle"> <select name="BigId1" class="input1">
<option value="0" selected>请选择主分类</option>
<%set rs = conn.execute("select * from BigClass")
while not rs.eof%>
<option value="<%=rs("BigId")%>"><%=rs("BCName")%></option>
<%rs.movenext
wend
rs.Close%>
</select>
</td>
</tr>
<tr valign="middle">
<td height="25" align="right" class="tdstyle">原主分类2:</td>
<td height="25" class="tdstyle"> <select name="BigId2" class="input1">
<option value="0" selected>请选择主分类</option>
<%set rs = conn.execute("select * from BigClass")
while not rs.eof%>
<option value="<%=rs("BigId")%>"><%=rs("BCName")%></option>
<%rs.movenext
wend
rs.Close%>
</select>
</td>
</tr>
<tr valign="middle">
<td height="25" align="right" class="tdstyle">合 并 为:</td>
<td height="25" class="tdstyle"> <input name="ClassName" type="text" class="input1" size="13">
</td>
</tr>
<tr valign="middle">
<td height="25" colspan="2" align="center" class="tdstyle"> <input name="Submit1" type="submit" class="button" id="Submit1" value="合 并">
<input name="Submit2" type="button" class="button" id="Submit2" onClick="javascript:window.history.go(-1)" value="返 回">
</td>
</tr>
<tr align="center" valign="middle">
<td height="25" colspan="2" class="tdstyle">(请慎重,合并所选分类及所属产品后不可逆!) </td>
</tr>
</table>
</form>
<form name="from2" method="post" action="../Sorry.asp">
<table width="100%" border="0" cellpadding="1" cellspacing="0">
<tr align="center">
<td height="50" colspan="2" class="tdstyle"><strong><font color="#000000" size="3">合并二级分类</font></strong></td>
</tr>
<tr>
<td width="50%" align="right" class="tdstyle">原分类别1:</td>
<td width="50%" valign="middle" class="tdstyle">
<select name="SmallId1" class="input1">
<option value="0" selected>请选择分类别</option>
<%set rs = conn.execute("select * from SmallClass")
while not rs.eof%>
<option value="<%=rs("SmallId")%>"><%=rs("SCName")%></option>
<%rs.movenext
wend
rs.Close%>
</select>
</td>
</tr>
<tr>
<td height="25" align="right" class="tdstyle">原分类别2:</td>
<td height="25" valign="middle" class="tdstyle">
<select name="SmallId2" class="input1">
<option value="0" selected>请选择分类别</option>
<%set rs= conn.execute("select * from SmallClass")
while not rs.eof
%>
<option value="<%=rs("SmallId")%>"><%=rs("SCName")%></option>
<%rs.movenext
wend
rs.Close%>
</select> </td>
</tr>
<tr>
<td height="25" align="right" class="tdstyle">合 并 为:</td>
<td height="25" valign="middle" class="tdstyle">
<input name="SmallIdto" type="text" class="input1" size="13">
</td>
</tr>
<tr>
<td height="30" colspan="2" align="center" class="tdstyle">
<input name="Submit1" type="submit" class="button" id="Submit1" value="合 并">
<input name="Submit2" type="button" class="button" value="返 回" onClick="javascript:window.history.go(-1)">
</td>
</tr>
<tr align="center">
<td height="25" colspan="2" class="tdstyle">(请慎重,合并所选分类及所属产品后不可逆!) </td>
</tr>
</table>
</form>
<form name="from3" method="post" action="../Sorry.asp">
<table width="100%" border="0" cellpadding="1" cellspacing="0">
<tr align="center">
<td height="50" colspan="2" class="tdstyle"><strong><font color="#000000" size="3">转移二级分类</font></strong></td>
</tr>
<tr>
<td width="50%" height="25" align="right" class="tdstyle">原分类别:</td>
<td width="50%" height="25" valign="middle" class="tdstyle">
<select name="Move" class="input1">
<option value="0" selected>要移动分类别</option>
<%set rs = conn.execute("select * from SmallClass")
while not rs.eof
%>
<option value="<%=rs("SmallId")%>"><%=rs("SCName")%></option>
<%rs.movenext
wend
rs.Close%>
</select>
</td>
</tr>
<tr>
<td height="25" align="right" class="tdstyle"> 转 移 到:</td>
<td height="25" valign="middle" class="tdstyle">
<select name="MoveTo" class="input1">
<option value="0" selected>移动到主分类</option>
<%set rs = conn.execute("select * from BigClass")
while not rs.eof%>
<option value="<%=rs("BigId")%>"><%=rs("BCName")%></option>
<%rs.movenext
wend
rs.Close%>
</select>
</td>
</tr>
<tr>
<td height="30" align="center" class="tdstyle"> </td>
<td height="25" valign="middle" class="tdstyle">
<input name="Submit1" type="submit" class="button" id="Submit1" value="移 动">
<input name="Submit2" type="button" class="button" value="返 回" onclick="javascript:window.history.go(-1)">
</td>
</tr>
<tr align="center">
<td height="25" colspan="2" class="tdstyle">(请慎重,移动所选分类及所属产品后不可逆!) </td>
</tr>
</table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -