Dear Friends,
I need to setup one web application.
The application works well when it is run in IIS which connection string as
<%
var MM_Journal_Thesis_STRING = "Driver={Microsoft Access Driver (*.mdb)};DBQ=D:\Websites\Journal_thesis\hellis.mdb"
%>
Now I need to upload this application on a website.
For that I have changed its physical path into Server.MapPath. The code is
<%
var MM_Journal_Thesis_STRING = "DRIVER={Microsoft Access Driver (*.mdb)};" & "DBQ=" & Server.MapPath("../hellis.mdb")
%>
In this case, it gives error as
Error Type:
ADODB.Recordset (0x800A0BB9)
Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.
I have tried so many ways. But still getting the same problem. I have made this web application with Dreamweaver MX 2004.
Any help from your side will be highly appreciated.
With Regards,
Anil
I need to setup one web application.
The application works well when it is run in IIS which connection string as
<%
var MM_Journal_Thesis_STRING = "Driver={Microsoft Access Driver (*.mdb)};DBQ=D:\Websites\Journal_thesis\hellis.mdb"
%>
Now I need to upload this application on a website.
For that I have changed its physical path into Server.MapPath. The code is
<%
var MM_Journal_Thesis_STRING = "DRIVER={Microsoft Access Driver (*.mdb)};" & "DBQ=" & Server.MapPath("../hellis.mdb")
%>
In this case, it gives error as
Error Type:
ADODB.Recordset (0x800A0BB9)
Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.
I have tried so many ways. But still getting the same problem. I have made this web application with Dreamweaver MX 2004.
Any help from your side will be highly appreciated.
With Regards,
Anil