|
Asp/VB Script Source Codes
Data DSN-Less Connection
ASP Database connection
ODBC DSNLess connection example
<%
Set dbc = Server.CreateObject("ADODB.Connection")
MdbFilePath = Server.MapPath("/data/data.mdb")
strConn= "Driver={Microsoft Access Driver (*.mdb)}; DBQ=" & MdbFilePath & ";uid=Admin;pwd=;"
dbc.open strconn
%>
<<<----- Return to
Asp/VB Script Source
Code Questions Page.
Have a Question ?
post your questions here. It
will be answered as soon as possible.
Check
Microsoft .Net Interview Questions
for more Microsoft
.Net Interview Questions with Answers.
Check
.Net Database Interview
Questions for more .Net Database Interview Questions with answers
Check
Job Interview Questions
for more Interview Questions with Answers
|