📄 bigclaas_red.asp
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="Connections/access.asp" -->
<%
Dim bigclaas_0
Dim bigclaas_0_numRows
Set bigclaas_0 = Server.CreateObject("ADODB.Recordset")
bigclaas_0.ActiveConnection = MM_access_STRING
bigclaas_0.Source = "SELECT * FROM bigclass"
bigclaas_0.CursorType = 0
bigclaas_0.CursorLocation = 2
bigclaas_0.LockType = 1
bigclaas_0.Open()
bigclaas_0_numRows = 0
%>
<%
Dim Repeat1__numRows
Dim Repeat1__index
Repeat1__numRows = 10
Repeat1__index = 0
bigclaas_0_numRows = bigclaas_0_numRows + Repeat1__numRows
%>
<!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" />
<title>无标题文档</title>
</head>
<body>
<table border="1" align="center">
<tr>
<td>类别编号</td>
<td>类别名称</td>
</tr>
<% While ((Repeat1__numRows <> 0) AND (NOT bigclaas_0.EOF)) %>
<tr>
<td><%=(bigclaas_0.Fields.Item("id").Value)%></td>
<td><%=(bigclaas_0.Fields.Item("bigclass").Value)%></td>
</tr>
<%
Repeat1__index=Repeat1__index+1
Repeat1__numRows=Repeat1__numRows-1
bigclaas_0.MoveNext()
Wend
%>
</table>
<p> </p>
<p> </p>
<table width="264" border="1" align="center">
<tr>
<td width="45"><a href="bigclaas_add.asp">填加</a></td>
<td width="43"><a href="bigclaas_xg.asp">修改</a></td>
<td width="49">删除</td>
<td width="99"><a href="smallclass_red.asp">维护小类信息</a></td>
</tr>
</table>
</body>
</html>
<%
bigclaas_0.Close()
Set bigclaas_0 = Nothing
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -