Hi,
Is there any way to create a html form in Access 2000 using information already installed in the database and when the user clicks on a button it submits this html form to its destination without creating a html file on the local machine.
Creating a html file locally is the way I have been doing it currently which works okay except when the form submits on load it it blocked by IE in Win XP SP2.
Can this be done inside Access or is there any other way of doing this.
This is a snippet of the html file I create locally. It shows that onload the form is submitted. I still want this to happen without being blocked in IE for WINXP SP2.
The message in IE is "To help protect your security, Internet Explorer has restricted this file from showing active content that could access your computer".
Thanks
Jim
'''''
strFileContent = strFileContent & "<body bgcolor=#FFFFFF text=#000000 link=#FFFFFF alink=#FFFFFF vlink=#FFFFFF onLoad=" & Chr$(34) & "Test.submit()" & Chr$(34) & ">" & vbNewLine
strFileContent = strFileContent & "<FORM NAME=" & Chr$(34) & "Test" & Chr$(34) & " METHOD=POST ACTION= & vbNewLine
Is there any way to create a html form in Access 2000 using information already installed in the database and when the user clicks on a button it submits this html form to its destination without creating a html file on the local machine.
Creating a html file locally is the way I have been doing it currently which works okay except when the form submits on load it it blocked by IE in Win XP SP2.
Can this be done inside Access or is there any other way of doing this.
This is a snippet of the html file I create locally. It shows that onload the form is submitted. I still want this to happen without being blocked in IE for WINXP SP2.
The message in IE is "To help protect your security, Internet Explorer has restricted this file from showing active content that could access your computer".
Thanks
Jim
'''''
strFileContent = strFileContent & "<body bgcolor=#FFFFFF text=#000000 link=#FFFFFF alink=#FFFFFF vlink=#FFFFFF onLoad=" & Chr$(34) & "Test.submit()" & Chr$(34) & ">" & vbNewLine
strFileContent = strFileContent & "<FORM NAME=" & Chr$(34) & "Test" & Chr$(34) & " METHOD=POST ACTION= & vbNewLine