index.asp
来自「网络作业批改管理信息系统,以vb为开发语言帮助老师和同学之间建立网络联系,很好的」· ASP 代码 · 共 50 行
ASP
50 行
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>在线交流</title>
</head>
<body>
<!--#include file="conn.asp"-->
<b><font size=5 face=隶书 color=blue><i><a href="say.asp">发 表 帖 子!</a></i></font></b><br><br>
<div align="center">
<center>
<table border="3" cellpadding="0" cellspacing="0" style="border-collapse: collapse; " bordercolor="#000021" width="100%" height="26">
<tr>
<td width="17%"><b>作 者</b></td>
<td width="83%"><b>主 题</b></td>
</tr>
</table>
</center>
</div><hr size="1">
<%i=1
set showbbs=conn.execute("select*from bbs order by id desc")
do while not showbbs.eof
%>
<div align="center">
<center>
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse; " bordercolor="#000000" width="100%" height="20">
<tr>
<td width="17%"><%=showbbs("name")%> </td>
<td width="83%">
<a href="show.asp?id=<%=showbbs("id")%>"><%=showbbs("title")%></a></td>
</tr>
</table>
</center>
</div><hr size="1">
<%i=i+1
if i>50 then exit do
showbbs.movenext
Loop
showbbs.Close
set showbbs=nothing
%>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?