index_article_content_all.asp
来自「基于ASP的教育网站」· ASP 代码 · 共 55 行
ASP
55 行
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="Connections/connDB.asp" -->
<!--#include file="Advert.asp"-->
<%
Dim RsSiteConfig
Dim RsSiteConfig_numRows
Set RsSiteConfig = Server.CreateObject("ADODB.Recordset")
RsSiteConfig.ActiveConnection = MM_connDB_STRING
RsSiteConfig.Source = "SELECT * FROM tSiteConfig"
RsSiteConfig.CursorType = 0
RsSiteConfig.CursorLocation = 2
RsSiteConfig.LockType = 1
RsSiteConfig.Open()
RsSiteConfig_numRows = 0
%>
<!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">
<link href="style_index.css" rel="stylesheet" type="text/css">
<title><%=(RsSiteConfig.Fields.Item("fSiteTitle").Value)%></title>
</HEAD>
<BODY bgColor=#ffffff leftMargin=0 topMargin=2>
<!--#include file="index_top.asp"-->
<TABLE cellSpacing=0 cellPadding=0 width=765 align=center border=0>
<TR>
<TD width=765 colSpan=3></TD>
<TR>
<TD vAlign=top width=195 background=images/index_4.gif>
<!--#include file="index_NewNotice.asp"-->
<!--#include file="index_NewArticle.asp" -->
<!--#include file="index_Article_Hot.asp"-->
</TD>
<TD width=8 background=images/index_5.gif height=35> </TD>
<TD vAlign=top align=middle bgColor=#f9f9f9><!--#include file="index_ArticleClass_index.asp" -->
</TD>
</TR>
<TR>
<TD background=images/dx3.gif height=20> </TD>
<TD background=images/index_5.gif height=20></TD>
<TD background=images/dx3.gif height=20> </TD>
</TR>
</TABLE>
<%Call Advert ("首页底部横条")%>
<!-- #include file="FrendSite_bottom.asp"-->
<!-- #include file="index_bottom.asp"-->
<%
RsSiteConfig.Close()
Set RsSiteConfig = Nothing
%>
</BODY>
</HTML>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?