Gastenboek is echt een toppertje, werkt als een tiet. Maar als ik E-mail notificatie aanzet, submit ie wel het bericht maar gaat ie niet terug naar het gastenboek en geeft ie de welbekende foutmelding “Serverobject, ASP 0177 (0x800401F3) Ongeldige klassereeks /plaats.asp, line 77” (ook de mail verstuurd ie niet) Hoe weet ik dat mijn IIS Webserver "CDONTS" ondersteund ? want die "CDONTS", daar snap ik dus echt niets van hè .
hellup…
door een script die alle server variabelen oproept te tonen :
[code]
<%@ LANGUAGE = VBScript %>
<%
'***********************************************************************
' System : ASPTest
' Author : Christopher Williams of CJWSoft www.CJWSoft.com
' Purpose : This code is used for checking various server
' : settings.
'
' COPYRIGHT NOTICE
'
'
' (c) Copyright 2000 - 2001 by CJWSoft. All rights reserved
'***********************************************************************
'*** Simply copy this file to your server and run it via the browser.
%>
<html>
<head>
<title>Misc Server Info</title>
</head>
<body>
<p align="center"><font face="Arial">Run this page on the server for misc server
info and specs that may help you<br>
Request.ServerVariables </font></p>
<div align="center"><center>
<table border="0" cellpadding="2" bgcolor="#FBFBFB">
<tr>
<td bgcolor="#E8E8E8"><small><font face="Arial"><b>APPL_PHYSICAL_PATH</b></font></small></td>
<td bgcolor="#E8E8E8"><small><font face="Arial"><% = Request.ServerVariables("APPL_PHYSICAL_PATH") %></font></small></td>
</tr>
<tr>
<td bgcolor="#E8E8E8"><b><small><font face="Arial">Language</font></small></b></td>
<td bgcolor="#E8E8E8"><small><font face="Arial"><% = Request.ServerVariables("HTTP_ACCEPT_LANGUAGE") %></font></small></td>
</tr>
<tr>
<td bgcolor="#E8E8E8"><small><font face="Arial"><b>HTTP referer</b></font></small></td>
<td bgcolor="#E8E8E8"><small><font face="Arial"><% = Request.ServerVariables("HTTP_REFERER") %></font></small></td>
</tr>
<tr>
<td bgcolor="#E8E8E8"><b><small><font face="Arial">ServerName</font></small></b></td>
<td bgcolor="#E8E8E8"><small><font face="Arial"><% = Request.ServerVariables("SERVER_NAME") %></font></small></td>
</tr>
<tr>
<td bgcolor="#E8E8E8"><small><font face="Arial"><b>ScriptName</b></font></small></td>
<td bgcolor="#E8E8E8"><small><font face="Arial"><% = Request.ServerVariables("SCRIPT_NAME") %></font></small></td>
</tr>
<tr>
<td bgcolor="#E8E8E8"><small><font face="Arial"><b>ServerProtocol</b></font></small></td>
<td bgcolor="#E8E8E8"><small><font face="Arial"><% = Request.ServerVariables("SERVER_PROTOCOL") %></font></small></td>
</tr>
<tr>
<td bgcolor="#E8E8E8"><small><font face="Arial"><b>PathInfo</b></font></small></td>
<td bgcolor="#E8E8E8"><small><font face="Arial"><% = Request.ServerVariables("PATH_INFO") %></font></small></td>
</tr>
<tr>
<td bgcolor="#E8E8E8"><small><font face="Arial"><b>PathTranslated</b></font></small></td>
<td bgcolor="#E8E8E8"><small><font face="Arial"><% = Request.ServerVariables("PATH_TRANSLATED") %></font></small></td>
</tr>
<tr>
<td bgcolor="#E8E8E8"></td>
<td bgcolor="#E8E8E8"></td>
</tr>
<tr>
<td bgcolor="#E8E8E8"><small><font face="Arial"><b>CDONTS</b></font></small></td>
<td bgcolor="#E8E8E8"><small><font face="Arial"><% Err.Clear
On Error Resume Next
Set objCDONTS = Server.CreateObject("CDONTS.Session")
If Err.Number <> 0 Then
Response.Write("<B>Not Installed</B> ")
Else
Response.Write("Version: " & objCDONTS.Version & " Installed ")
End If
%></font></small></td>
</tr>
<tr>
<td bgcolor="#E8E8E8"><small><font face="Arial"><b>SMTPMail</b></font></small></td>
<td bgcolor="#E8E8E8"><small><font face="Arial"><% Err.Clear
On Error Resume Next
Set objSMTPMail = Server.CreateObject("SoftArtisans.SMTPMail")
If Err.Number <> 0 Then
Response.Write("<B>Not Installed</B> ")
Else
Response.Write("Version: " &objSMTPMail.Version & " Installed ")
End If
%></font></small></td>
</tr>
<tr>
<td bgcolor="#E8E8E8"><small><font face="Arial"><b>JMail</b></font></small></td>
<td bgcolor="#E8E8E8"><small><font face="Arial"><% Err.Clear
On Error Resume Next
Set JMail = Server.CreateObject("JMail.SMTPMail")
If Err.Number <> 0 Then
Response.Write("<B>Not Installed</B> ")
Else
Response.Write("Version: " &JMail.Version & " Installed ")
End If
%></font></small></td>
Het lukt me niet ik heb alles gewoon gepubliceert zonder iets aan te passen. Ik krijg eerst het gastenboek te zien en dan wil ik het tekenen. Tot zo ver gaat het goed en als ik dan op plaats bericht klik dan krijg ik geen pagina meer te zien.
kan iemand mij helpen en moet ik mischien iets aan passen