P
Pierre
Hi guys,
i have this message
Active Server Pages error 'ASP 0126'
Include file not found
/logon/secure.asp, line 2
The include file '/logon.inc' was not found.
It is there!!
this is secure.asp:
<% @language="vbscript" %>
<!--#include virtual="/logon.inc"-->
<html>
<head><title>Secure Page</title></head>
<body>
<h3>Secure Page</h3>
<p>You are logged on as:
<%
If Len(Session("UID")) = 0 Then
Response.Write "<b>You are not logged on.</b>"
Else
Response.Write "<b>" & Session("UID") & "</b>"
End If
%>
</p>
<p><a href="defaut.asp">Back to default</a></p>
</body>
</html>
Can someone explain that to me?
Regards,
Pierre
i have this message
Active Server Pages error 'ASP 0126'
Include file not found
/logon/secure.asp, line 2
The include file '/logon.inc' was not found.
It is there!!
this is secure.asp:
<% @language="vbscript" %>
<!--#include virtual="/logon.inc"-->
<html>
<head><title>Secure Page</title></head>
<body>
<h3>Secure Page</h3>
<p>You are logged on as:
<%
If Len(Session("UID")) = 0 Then
Response.Write "<b>You are not logged on.</b>"
Else
Response.Write "<b>" & Session("UID") & "</b>"
End If
%>
</p>
<p><a href="defaut.asp">Back to default</a></p>
</body>
</html>
Can someone explain that to me?
Regards,
Pierre