boardtype.asp

来自「网店批发系统,很好很强大,很好很强大很好很强大」· ASP 代码 · 共 55 行

ASP
55
字号
<!--#include file="conn.asp"-->
<!--#include file="checkAdmin.asp"-->
<!--#include file="../inc/check_inc.asp"-->
<!--#include file="../inc/page_inc.asp"-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<link href="css/css.css" rel="stylesheet" type="text/css" />
<title>商城公告管理</title>
</head>

<body>
<!--#include file="inc/boardType_inc.asp"-->
<table width="97%" border="0" cellpadding="0" cellspacing="0">
  <tr>
    <td height="24" align="center" class="listtop">类别序号</td>
	<td align="center" class="listtop">类别名称</td>
	<td align="center" class="listtop">操作</td>
  </tr>  
<%	
	if BoardTypeNum <> -1 then	
		for j = 0 to BoardTypeNum
%>
<form name="myform" method="post" action="BoardType.asp?action=edit&ID=<%=BoardType(0,j)%>">
  <tr>
    <td height="24" align="center" class="listitem"><%=BoardType(0,j)%></td>
	<td align="center" class="listitem"><input name="TypeName" type="text" size="15" class="input_text" value="<%=BoardType(1,j)%>" /></td>
	<td align="center" class="listitem">
	 	<input type="submit" value="修改" class="Button" /> 
	    <input name="Submit" type="button" class="Button" value="删除" onclick="window.location.href='BoardType.asp?action=del&ID=<%=BoardType(0,j)%>'" />
      </td>
  </tr>	
</form>
<%
		next
	end if
%>
</table>
<table width="97%" border="0" cellpadding="0" cellspacing="0">
	<form name="ClassForm" method="post" action="BoardType.asp?action=add">
	  <tr>
	    <td colspan="2" align="center">&nbsp;</td>
      </tr>
	  <tr>
		<td height="24" colspan="2" align="center" class="listtitle">类别名称:
		  <input name="TypeName" type="text" class="input_text" value="" />
		操作
		  <input name="submit" type="submit" class="Button" value="添加" />		</td>
	  </tr>
	</form>	  
</table>
<!--#include file="inc/closeconn_inc.asp"-->
</body>
</html>

⌨️ 快捷键说明

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