Microsoft OLE DB Provider for ODBC Drivers 错误 '80004005'
[Microsoft][ODBC 驱动程序管理器] 未发现数据源名称并且未指定默认驱动程序
/index.asp,行8
我的网页1-27行的代码是
<%@LANGUAGE="VBSCRIPT"%>
<!--#include file="Connections/IInterest.asp" -->
<%
Dim software
Dim software_numRows
Set software = Server.CreateObject("ADODB.Recordset")
software.ActiveConnection = MM_IInterest_STRING
software.Source = "SELECT * FROM software"
software.CursorType = 0
software.CursorLocation = 2
software.LockType = 1
software.Open()
software_numRows = 0
%>
<%
Dim media
Dim media_numRows
Set media = Server.CreateObject("ADODB.Recordset")
media.ActiveConnection = MM_IInterest_STRING
media.Source = "SELECT * FROM media"
media.CursorType = 0
media.CursorLocation = 2
media.LockType = 1
media.Open()
我的网页地址是 iinterest2.free.vvx.cn/
望高手解决,谢谢