Strange page!

eramgarden

Contributor
Joined
Mar 8, 2004
Messages
579
I have a page that works on my machine and production but doesnt work in Test !!

Line of code that fails is this :
Code:
 Dim rec = Server.CreateObject("ADODB.recordset")
 [b]rec = EAPI.SearchALL(CStr(0), CStr(0), CStr(strModuleType), CStr(strSearchString), CStr(strSearchType), Session("mode"))[/b]

The same page stopped working on my machine for couple of days and then started working again !!

I have copied the WHOLE folder from my machine to Test and still it doesnt work!!

What's the deal here??
 
Why are you using Recordset with ASP.NET???????

You should be using one of the intrinsic .Net Data Objects; DataAdapter, DataReader, DataSet
 
Back
Top