conn.asp
来自「一款广告互换」· ASP 代码 · 共 12 行
ASP
12 行
<%
'''Connectig to database '''''''
set Conn=server.createobject("Adodb.connection")
Conn.ConnectionString = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath("\affiliate.mdb") & ";"
Conn.open
'If you wish to use DSN then comment out the 2 lines above and uncomment the line below
'Conn.open "dsn=affiliate"
%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?