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

📄 bigclass.asp

📁 某公司的进销存软件的设计与开发
💻 ASP
字号:
<%
if session("username")="" then
%>
<script language="javascript">
top.location.href="../login.asp"
</script>
<%  
  response.end
end if
%>
<!-- #include file="../conn2.asp" -->
<!-- #include file="../const.asp" -->

<html>
<head>
<title><%=dianming%> - 大类管理</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../style2.css" rel="stylesheet" type="text/css">
</HEAD>

<BODY>
<%
if fla5="0" then
%>
<br><center><font color="#FF0000">你不具备此权限,请与管理员联系!</font></center>
<%  
  response.end
end if
%>
<table width="98%" border="0" cellpadding="0" cellspacing="2" align="center">
  <tr> 
    <td height="21">&nbsp;<img src="../Images/ico/ico53.gif" width="32" height="32" hspace="2" vspace="2" align="absmiddle"><font size="+1"><strong> 修改 / 删除大类</strong></font></td>
  </tr>
</table>
<table width="98%" border="0" cellspacing="1" cellpadding="2" align="center" class="TableMenu">
  <tr class="a1" style="color:#ffffff;font-size:12px;">
    <th width="70%" height="30">大类名称</th>
    <th width="14%">修改</th>
    <th width="16%">删除</th>
  </tr>
  <%
  sql="select * from bigclass order by id"
  set rs_bigclass=conn.execute(sql)
  do while rs_bigclass.eof=false
  %>
  <tr bgcolor="#ececec" onMouseOver="this.bgColor='#ffffff'" onMouseOut="this.bgColor='#ececec'">
    <td align="center" height="25"><%=rs_bigclass("bigclass")%></td>
    <td align="center"><a href="../about/about1.htm"><img src="../images/res.gif" border="0" hspace="2" align="absmiddle">修改</a></td>
    <td align="center"><a href="../about/about1.htm" onClick="return confirm('将同时删除此大类下的所有小类和属于此大类的所有产品!!!请慎重!!!\n\n确定要删除此大类吗?')"><img src="../images/del.gif" border="0" hspace="2" align="absmiddle">删除</a></td>
  </tr>
  <%
    rs_bigclass.movenext
  loop
  %>
</table>
</body>
</html>

⌨️ 快捷键说明

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