Just use the "Save as web page" option in the File menu.
Thanks for the help.
But I had a query, where the database connection specified here, is FOR A sql SERVER .
var strConn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source = C:/clientDB.mdb";
var rs = new ActiveXObject("ADODB.Recordset");
Now , do I have to configure my Access Database in someway?
Here is my HTML Code:
<head>
Select STATE: <SELECT NAME="entry4">
<OPTION VALUE="no1">STATE
</SELECT>
<form>
MONDAY
<input type="checkbox" />
<br />
TUESDAY
<input type="checkbox"/>
<br />
WEDNESDAY
<input type="checkbox"/>
<br />
THURSDAY
<input type="checkbox"/>
<br />
FRIDAY
<input type="checkbox"/>
<br />
SATURDAY
<input type="checkbox"/>
<br />
SUNDAY
<input type="checkbox"/>
</form>
To submit the query, press:
<INPUT TYPE="submit" VALUE="Submit Query">. <P>
</head>
<html>
<head>
<h1>Accessing Data through HTML and Access</h1>
</head>
<body>
Looking at Excel Web Components to create a DAP
</body>
</hmtl>
The idea is to select teh state and day
I have a ACCESS DB, which has all the details of a partuclar state and its working hours.
Need help in connecting both of them.
Thank You