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: BC30652: Reference required to assembly 'ADODB'
containing the type 'ADODB.Recordset'. Add one to your project.
The code is just like this :
<script runat="server"> ==> default.aspx.vb
'Public Variable
Public Visit As New mvccms.Visit()
Public rsoRecordset As New ADODB.Recordset()
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
'Put user code to initialize the page here
Call ConfigureVisit()
End Sub
Private Sub Page_UnLoad(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Unload
'Put user code to initialize the page here
Call EndVisit()
End Sub
</script>
And at the pages (default.aspx)
<%
Dim DapurGosipCatID As Integer = 1000033
rsoRecordset = Visit.Articles.GetCategory(DapurGosipCatID)
%>
Question :
My COM is "Visit.Articles.GetCategory(DapurGosipCatID)" will give feedback
as Recordset object.
Why this could be happen, in fact i already add reference to ADODB and ADOR.
Please help me..........
thanks
Richard