我的ASP.NET执行ADO时总是出现下面的错误信息:
Server Error in '/' Application.
--------------------------------------------------------------------------------Compilation Error 
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. Compiler Error Message: BC30002: Type 'ADOConnection' is not defined.Source Error: Line 3:  <Script Language="VB" Runat="Server">
Line 4:  Sub Page_Load(sender As Object, e As EventArgs)
Line 5:  Dim cnA As ADOConnection=New ADOConnection
Line 6:  cnA.Provider="Microsoft.Jet.OLEDB.4.0"
Line 7:  cnA.DataSource="test.mdb"
 Source File: E:\asp\example\ado2.aspx    Line: 5 Show Detailed Compiler Output:
C:\WINNT\system32> "C:\WINNT\Microsoft.NET\Framework\v2.0.40607\vbc.exe" /t:library /utf8output /R:"C:\WINNT\assembly\GAC_MSIL\System\2.0.3600.0__b77a5c561934e089\System.dll" /R:"C:\WINNT\assembly\GAC_32\System.Data\2.0.3600.0__b77a5c561934e089\System.Data.dll" /R:"C:\WINNT\assembly\GAC_MSIL\System.Web.Services\2.0.3600.0__b03f5f7f11d50a3a\System.Web.Services.dll" /R:"C:\WINNT\assembly\GAC_MSIL\System.Xml\2.0.3600.0__b77a5c561934e089\System.Xml.dll" /R:"C:\WINNT\assembly\GAC_32\System.EnterpriseServices\2.0.3600.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" /R:"C:\WINNT\assembly\GAC_MSIL\System.Web\2.0.3600.0__b03f5f7f11d50a3a\System.Web.dll" /R:"C:\WINNT\assembly\GAC_MSIL\System.Web.Mobile\2.0.3600.0__b03f5f7f11d50a3a\System.Web.Mobile.dll" /R:"C:\WINNT\assembly\GAC_MSIL\System.Drawing\2.0.3600.0__b03f5f7f11d50a3a\System.Drawing.dll" /out:"C:\WINNT\Microsoft.NET\Framework\v2.0.40607\Temporary ASP.NET Files\root\0be1bf0b\973ade59\uihgj5s0.dll" /debug- /win32resource:"C:\WINNT\Microsoft.NET\Framework\v2.0.40607\Temporary ASP.NET Files\root\0be1bf0b\973ade59\uihgj5s0.res" /define:_MYTYPE=\"Web\" /define:_MYPUBLIC=False /imports:Microsoft.VisualBasic,System,System.Collections,System.Collections.Specialized,System.Configuration,System.Text,System.Text.RegularExpressions,System.Web,System.Web.Caching,System.Web.SessionState,System.Web.Security,System.Web.Profile,System.Web.UI,System.Web.UI.Imaging,System.Web.UI.WebControls,System.Web.UI.WebControls.WebParts,System.Web.UI.HtmlControls  "C:\WINNT\Microsoft.NET\Framework\v2.0.40607\Temporary ASP.NET Files\root\0be1bf0b\973ade59\uihgj5s0.0.vb" "C:\WINNT\Microsoft.NET\Framework\v2.0.40607\Temporary ASP.NET Files\root\0be1bf0b\973ade59\uihgj5s0.1.vb" "C:\WINNT\Microsoft.NET\Framework\v2.0.40607\Temporary ASP.NET Files\root\0be1bf0b\973ade59\uihgj5s0.2.vb" "C:\WINNT\Microsoft.NET\Framework\v2.0.40607\Temporary ASP.NET Files\root\0be1bf0b\973ade59\uihgj5s0.3.vb" "C:\WINNT\Microsoft.NET\Framework\v2.0.40607\Temporary ASP.NET Files\root\0be1bf0b\973ade59\uihgj5s0.4.vb" "C:\WINNT\Microsoft.NET\Framework\v2.0.40607\Temporary ASP.NET Files\root\0be1bf0b\973ade59\uihgj5s0.5.vb" "C:\WINNT\Microsoft.NET\Framework\v2.0.40607\Temporary ASP.NET Files\root\0be1bf0b\973ade59\uihgj5s0.6.vb"
Microsoft (R) Visual Basic .NET Compiler version 8.0.40607.42
for Microsoft (R) .NET Framework version 2.0.40607.42
Copyright (C) Microsoft Corporation 1987-2003. All rights reserved.C:\WINNT\Microsoft.NET\Framework\v2.0.40607\Temporary ASP.NET Files\root\0be1bf0b\973ade59\uihgj5s0.0.vb(20) : error BC30466: Namespace or type specified in the Imports 'System.Data.ADO' cannot be found.Imports System.Data.ADO
        ~~~~~~~~~~~~~~~
C:\WINNT\Microsoft.NET\Framework\v2.0.40607\Temporary ASP.NET Files\root\0be1bf0b\973ade59\uihgj5s0.1.vb(20) : error BC30466: Namespace or type specified in the Imports 'System.Data.ADO' cannot be found.Imports System.Data.ADO
        ~~~~~~~~~~~~~~~
C:\WINNT\Microsoft.NET\Framework\v2.0.40607\Temporary ASP.NET Files\root\0be1bf0b\973ade59\uihgj5s0.2.vb(20) : error BC30466: Namespace or type specified in the Imports 'System.Data.ADO' cannot be found.Imports System.Data.ADO
        ~~~~~~~~~~~~~~~
C:\WINNT\Microsoft.NET\Framework\v2.0.40607\Temporary ASP.NET Files\root\0be1bf0b\973ade59\uihgj5s0.3.vb(20) : error BC30466: Namespace or type specified in the Imports 'System.Data.ADO' cannot be found.Imports System.Data.ADO
        ~~~~~~~~~~~~~~~
C:\WINNT\Microsoft.NET\Framework\v2.0.40607\Temporary ASP.NET Files\root\0be1bf0b\973ade59\uihgj5s0.4.vb(20) : error BC30466: Namespace or type specified in the Imports 'System.Data.ADO' cannot be found.Imports System.Data.ADO
        ~~~~~~~~~~~~~~~
E:\asp\example\ado.aspx(13) : error BC30002: Type 'ADOConnection' is not defined.Dim cnA As ADOConnection
           ~~~~~~~~~~~~~
E:\asp\example\ado.aspx(14) : error BC30002: Type 'ADOConnection' is not defined.cnA=New ADOConnection
        ~~~~~~~~~~~~~
E:\asp\example\ado.aspx(15) : error BC30002: Type 'ADOCommand' is not defined.Dim cmA As ADOCommand
           ~~~~~~~~~~
E:\asp\example\ado.aspx(16) : error BC30002: Type 'ADOCommand' is not defined.cmA=New ADOCommand
        ~~~~~~~~~~
E:\asp\example\ado2.aspx(5) : error BC30002: Type 'ADOConnection' is not defined.Dim cnA As ADOConnection=New ADOConnection
           ~~~~~~~~~~~~~                  
E:\asp\example\cma.aspx(19) : error BC30002: Type 'ADOCommand' is not defined.Dim cmA As ADOCommand = New ADOCommand("",strConStr)
           ~~~~~~~~~~                               
E:\asp\example\convert.aspx(7) : warning BC42016: Implicit conversion from 'Double' to 'Single'.sngCentimeters=((sngFeet*12)+sngInches)*2.54
               ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
E:\asp\example\convert.aspx(8) : error BC30648: String constants must end with a double quote.Response.Write(CStr(sngFeet) & " 英呎" & CStr(sngInches) & " 英吋等于
                                                         ~~~~~~
E:\asp\example\convert.aspx(9) : error BC30648: String constants must end with a double quote.")
~~
E:\asp\example\database.aspx(14) : error BC30002: Type 'ADOConnection' is not defined.Dim cnA As ADOConnection=New ADOConnection
           ~~~~~~~~~~~~~                  
E:\asp\example\database.aspx(15) : error BC30002: Type 'ADOCommand' is not defined.Dim cmA As ADOCommand=New ADOCommand
           ~~~~~~~~~~               
E:\asp\example\getname.aspx(20) : error BC30002: Type 'ADOCommand' is not defined.Dim cmA As ADOCommand=New ADOCommand
           ~~~~~~~~~~               
E:\asp\example\getname.aspx(21) : error BC30451: Name 'ADOCommand' is not declared.ADOCommand("","Provider=Microsoft.Jet.OLEDB.4.0;" & _
~~~~~~~~~~                                           
E:\asp\example\getname.aspx(23) : error BC30002: Type 'ADODataReader' is not defined.Dim drA As ADODataReader
           ~~~~~~~~~~~~~ 
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:2.0.40607.42; ASP.NET Version:2.0.40607.42 ================================================================================
请大家帮忙看看,谢谢!