content.asp
来自「基于C#语言的一个物流信息网数据库系统开发案例的源代码 ,很实用」· ASP 代码 · 共 51 行
ASP
51 行
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!-- #include file="../Conn/conn.asp" -->
<% id=request.queryString("id") %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>帮助信息</title>
</head>
<link rel="stylesheet" href="../css/style.css">
<body>
<%
sql="select * from tb_HelpMeg where ID="&id
rs.open sql,conn
while not rs.eof
%>
<form name="form1" method="post" action="">
<table width="506" border="0" align="center" cellpadding="3" cellspacing="5" class="wenbenkuang">
<tr>
<td colspan="4"><div align="center">具体帮助信息</div></td>
</tr>
<tr valign="top">
<td width="80" height="44"><div align="right">信息标题:</div></td>
<td colspan="3"> <%=rs("Title")%> </td>
</tr>
<tr valign="top">
<td height="18">
<div align="right">信息内容:</div> </td>
<td colspan="3" rowspan="2">
<%=rs("Content")%> </td>
</tr>
<tr valign="top">
<td height="315"> </td>
</tr>
</table>
<div align="center">
<br>
<br>
<a href="#" onClick="javascript:window.close();">【关闭窗口】</a>
</div>
</form>
<%
rs.movenext
wend
set rs=nothing
conn.close
set conn=nothing
%>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?