📄 conn_compmarket.asp
字号:
<%
Dim dcnCompMarket 'As ADODB.Connection Object
Dim rsCompMarket 'As ADODB.Recordset Object
Dim dsn 'Name of the DSN source
Dim uid,pwd 'User ID and password to login
Dim rsSource 'Name of the data source
Dim rsSQL 'The SQL sentence to produce the recordset
'Set the values of the connection
dsn="dsn=CompMarket;"
uid="uid=sql-write;"
pwd="pwd=qb493;"
'Create the connection
set dcnCompMarket=Server.CreateObject("ADODB.Connection")
dcnCompMarket.Open dsn & uid & pwd
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -