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