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

📄 help.asp

📁 一套很早的多用户电子商务程序
💻 ASP
字号:
<%@ LANGUAGE="VBSCRIPT" %>
<!--#include file="conn.asp" -->
<%
id=request.QueryString("id")
id=FomaID(id)
set rs=server.createobject("adodb.recordset")
sql="select * from help where id="&id
rs.open sql,conn,1,1
if rs.eof then
response.redirect "default.asp"
else
n_top=rs("n_top")
content=rs("content")
end if
rs.close
%>
<html>
<head>
<title>网站简介</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<STYLE>BODY {
	FONT-SIZE: 9pt
}
TD {
	FONT-SIZE: 9pt
}
a            { text-decoration: none; color: #000000 }
a:hover      { text-decoration: underline; color: #0000FF }
</STYLE>
<SCRIPT language=javascript> </SCRIPT>
</head>

<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0">
<!--#include file="top.asp" -->

<div align="center">
  <table width="778" border="0" cellspacing="0" cellpadding="0">
    <tr> 
      <td colspan="3"><img border="0" src="pic/other_01.gif" width="778" height="15"></td>
    </tr>
    <tr> 
      <td width="217"><img src="pic/other_02.gif" width="217" height="115"></td>
      <td width="478"> 
        <div align="center"> 
          <table width="400" border="0" cellspacing="0" cellpadding="0">
            <tr> 
              <td> 
                <div align="center"><font size="6"><b><%=n_top%></b></font></div>
              </td>
            </tr>
            <tr> 
              <td> 
                <hr>
              </td>
            </tr>
          </table>
        </div>
      </td>
      <td width="83"><img src="pic/other_04.gif" width="83" height="115"></td>
    </tr>
    <tr valign="top"> 
      <td colspan="3" height="281"> 
        <table width="778" border="0" cellspacing="0" cellpadding="0">
          <tr> 
            <td width="86" background="pic/lift.gif" height="299">&nbsp;</td>
            <td width="681" height="299" valign="top"> 
              <div align="center"> 
                <table width="625" border="0" cellspacing="0" cellpadding="0">
                  <tr> 
                    <td height="131" valign="top" style="line-height: 150%"><%=content%></td>
                  </tr>
                </table>
              </div>
            </td>
          </tr>
        </table>
      </td>
    </tr>
  </table>
</div>
<!--#include file="bottom.asp" -->
</body>  
</html>  

⌨️ 快捷键说明

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