Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Record inserted twice when using IE5.5

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
When i use ie5.5 (dutch version), nt4.0 (us) with iis4.0 (US), and I execute the script below against a MS-Access database (dutch), the record is inserted twice
<HTML>
<BODY>
<%

SQLstr = &quot;INSERT INTO [tBericht] ( [bTitel], [bInhoud], [bAuteur], [bInvoerdatum], [bVerloopdatum], [bBerichtType], [bPubliceren], [bInternet], [bIntranet], [bEigenaar], [bDeleted]) VALUES ('texttexttext', 'This is content', 'texttextetxt', #2/14/01#, #3/7/01#, 'Tips', 1, 1, 1, 299, 0)&quot;

Set = Server.CreateObject(&quot;ADODB.Connection&quot;)
&quot;DSN=ifocus&quot;
SQLstr
Set = Nothing
%>

</BODY>
</HTML>

The problem does not occur, when i am using another browser. Can anybody help ?

Thanks, Kees
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top