ASP如何连接数据源?(系统DSN)中建立的数据源?
ASP如何连接数据源?(系统DSN)中建立的数据源?
ASP怎么建立连接,不是OLEDB方式,用ODBC中的“用户DSN”建立的数据源进行连接?如何操作?
问题补充:我的是ODBC中的“用户DSN”不是“系统DSN”,“用户DSN”怎么连接?而且我的数据库有密码。
提问者:匿名
最佳答案
Set con=Server.CreateObject("ADODB.Connection")
con.Open "DSN=CommyDSN;UID=admin;Database=CommyManage"
'以上是DSN访问数据时,实例,DSN=CommyDSN中的值,必须与如下步骤中的设定名称一致
DSN设定数据源名称步骤
控制台-系统管理工具-资料来源(ODBC)-系统资料夹来源名称-
Microsof Access Driver(*.mdb)-完成-
这时看到资料来源名称(自己命名,记得在数据库连接资料中要一致哟)并选资料库的位置即可
相关文档:
<%
Private Const BITS_TO_A_BYTE = 8
Private Const BYTES_TO_A_WORD = 4
Private Const BITS_TO_A_WORD = 32
Private m_lOnBits(30)
Private m_l2Power(30)
Private Function LShift(lValue, iShiftBits)
If iShiftBits = 0 Then
LShift = lValue
Exit Function
ElseIf iShiftBi ......
5、纯ASP代码生成图表函数——立体饼图
<%dim total(7,1)
total(1,0)="中国经营报"
total(2,0)="招聘网"
total(3,0)="51Job"
total(4,0)="新民晚报"
total(5,0)="新闻晚报"
total(6,0)="南方周末"
total(7,0)="羊城晚报"
total(1,1)=200
total(2,1)=1200
total(3,1)=900
total(4,1)=600
total(5, ......
1、在网站目录下新建一个文本:txtcounter.txt 在文本填写1或其他识字
2、新建一asp文件:count.asp,加入以下代码:
<%
CountFile=Server.MapPath("txtcounter.txt")
Set FileObject=Server.CreateObject("Scripting.FileSystemObject")
Set Out=FileObject.OpenTextFile(CountF ......
<%'开始分页
Const MaxPerPage=25
dim totalPut
dim CurrentPage
dim TotalPages
dim j
  ......
<style type="text/css">
.container, .container *{margin:0; padding:0;}
.container{width:325px; height:287px; overflow:hidden;position:relative; margin-left:5px; margin-top:6px;}
.slider{position:absolute;}
.slider li{ list-style:none;display:inline;}
.slider img{ width:325px; height:287p ......