Hi

Need help.

In a project where I use a connection to a access database, I get the following
security warning:

"This web site is using a data provider that's possibly insecure. If you trust
this web site push OK otherwise push CANCEL."

The first message is displayed and the warning shows up. After pushing OK
nothing happens.


Here is the code:

<SCRIPT Language = VBscript>

Sub Aendern_OnClick()
Message1 = MsgBox("Testmessage",0,"Test")
Set conn_tlf = CreateObject("ADODB.Connection")
conn_tlf.Open "dsn=Telefonverzeichnis"
SQL_Edit = "UPDATE Anschluesse SET Kurzwahl=9999 WHERE Anschluss_ID = 1"
conn_tlf.Execute(SQL_Edit)
Set conn_tlf = Nothing
Message2 = MsgBox("Another testmessage",0,"Test")
end sub

</SCRIPT>

What is wrong?


Thanks
Michael

RE: ADO securitywarning by M

M
Fri Jun 24 04:16:05 CDT 2005

this is a typical problem, nothing to do with it unless change the securty
level of the IE configuration, but in that case maybe it'll cause some
security issue , like getting attacked by the spam/virus over the inernet.

Re: ADO securitywarning by Mikal

Mikal
Fri Jun 24 15:25:08 CDT 2005

M.Pung <M.Pung@discussions.microsoft.com> schrieb:

>this is a typical problem, nothing to do with it unless change the securty
>level of the IE configuration, but in that case maybe it'll cause some
>security issue , like getting attacked by the spam/virus over the inernet.

Thanks for helping.
Michael