Forum de discussion
Forum « Programmation ASP » (archives)
Re: access + ASP
Envoyé: 1er juin 2006, 7h26 par abuz
Suite a tes lien j'ai creer ma page asp:
<%@ LANGUAGE="VBSCRIPT" %>
<HTML>
<HEAD>
<TITLE>ASP-access</TITLE>
</HEAD>
<BODY>
<%
Dim objConnexion, chaineConn
Set objConnexion = Server.CreateObject("ADODB.Connection")
chaineConn = "provider=MICROSOFT.JET.OLEDB.4.0;DataSource=C:\Inetpub\wwwroot\test.mdb;User ID=Administrateur;Password=test;"
objConnexion.open chaineConn
objConnexion.close
set objConnexion=nothing
%>
</BODY>
</HTML>
Mais quand j'essaye d'aficher ma page il me dit : "You are not authorized to view this page"
Réponses
|