conn.asp

来自「企业管理系统,黑色风格」· ASP 代码 · 共 19 行

ASP
19
字号
<!--#include file="inc/conn.asp" -->
<!--#include file="inc/functions.asp"-->
<%
	set rs=conn.execute(" select top 1 * from [data_config] ")
	if not rs.eof then
	   websitename=rs("name")
	   websiteUrl=rs("url")
	   websiteEmail=rs("email")
	   websiteTel=rs("tel")
	   websiteFax=rs("fax")
	   websiteMobile=rs("mobile")
	   keywords=rs("keywords")
	   Description=rs("Description")
	   websiteCopyright=rs("Copyright")
	end if
	rs.close
	set rs=nothing
%>

⌨️ 快捷键说明

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