Here are the file that I'm using which I got from one book. Thanks in
advance.
********************* HTML file **************************
<HTML><HEAD>
<TITLE> Guestbook - Using Intenet Database Connector</TITLE>
</HEAD><BODY>
<TABLE>
<TR><h2>
Guestbook - Using Internet Database Connector </h2>
<HR>Please enter the following information and press the SUBMIT button <BR>
<HR>
<P><form action="GuestBookInsert.idc" method=get>
<B>Please enter your name </B>
<input type="text" name="Name" value=" " size=35 maxlength=40>
<P><B>Please enter your e-mail address</B>
<input type="text" name="Email" value=" " size=45 maxlength=50>
<P><B>Please enter your comment below</B>
<textarea name="Comments" cols=70 rows=4></textarea>
<P><input type="submit" value="SUBMIT Guest Book Entry">
<input type="reset" value="Reset Form">
</form>
<p>
<HR><a href="GuestBookView.idc?">View Guest Book</a>
<HR>
</BODY></HTML>
************************* HTX File ******************************
<HTML>
<HEAD>
<TITLE>Thanks for the guest book entry! </TITLE>
</HEAD>
<BODY>
<h1>Guest Book entry added to Microsoft Access Database.</h1>
<HR>
<h2>
Hello <%idc.Name%>,
</h2>
Thanks very much for visiting this web site and signing the guest book. We
hope you visit this Web Site again., soon.
</BODY>
</HTML>
******************************** IDC File *******************
DataSource: GuestBook
Username: sa
Template: GuestBookInsert.htx
RequiredParameters: Name, Email
SQLStatement:
+INSERT INTO GuestBookEntries
+(Name, Email, Comments)
+VALUES ('%Name%','%Email%','%Comments%');
Ali Suffri Mohd Jaffar <a...@ids.org.my> wrote in article
<01bbee69$7267c280$b9f1...@ali.ids.org.my>...
Hi
did you set the the System DNS with the ODBC Administartor?
set GuestBook to an mdb file.