<% @ Language=VBScript %> <% Option Explicit %> <% '**************************************************************************************** '** Copyright Notice '** '** Web Wiz Guide - Web Wiz Forums '** '** Copyright 2001-2004 Bruce Corkhill All Rights Reserved. '** '** This program is free software; you can modify (at your own risk) any part of it '** under the terms of the License that accompanies this software and use it both '** privately and commercially. '** '** All copyright notices must remain in tacked in the scripts and the '** outputted HTML. '** '** You may use parts of this program in your own private work, but you may NOT '** redistribute, repackage, or sell the whole or any part of this program even '** if it is modified or reverse engineered in whole or in part without express '** permission from the author. '** '** You may not pass the whole or any part of this application off as your own work. '** '** All links to Web Wiz Guide and powered by logo's must remain unchanged and in place '** and must remain visible when the pages are viewed unless permission is first granted '** by the copyright holder. '** '** This program is distributed in the hope that it will be useful, '** but WITHOUT ANY WARRANTY; without even the implied warranty of '** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR ANY OTHER '** WARRANTIES WHETHER EXPRESSED OR IMPLIED. '** '** You should have received a copy of the License along with this program; '** if not, write to:- Web Wiz Guide, PO Box 4982, Bournemouth, BH8 8XP, United Kingdom. '** '** '** No official support is available for this program but you may post support questions at: - '** http://www.webwizguide.info/forum '** '** Support questions are NOT answered by e-mail ever! '** '** For correspondence or non support questions contact: - '** info@webwizguide.info '** '** or at: - '** '** Web Wiz Guide, PO Box 4982, Bournemouth, BH8 8XP, United Kingdom '** '**************************************************************************************** Response.Buffer = True 'Make sure this page is not cached Response.Expires = -1 Response.ExpiresAbsolute = Now() - 2 Response.AddHeader "pragma","no-cache" Response.AddHeader "cache-control","private" Response.CacheControl = "No-Store" 'Dimension variables Dim strReturnPage 'Holds the page to return to Dim strReturnPageProperties 'Holds the properties of the return page Dim intForumID 'Get the forum page to return to Select Case Request.QueryString("RP") 'Read in the search to return to Case "Search" strReturnPage = "search.asp" strReturnPageProperties = "?RP=" & Trim(Mid(Request.Form("RP"), 1, 8)) & "&SPN=" & CInt(Request.QueryString("SPN")) & "&search=" & Server.URLEncode(Request.QueryString("search")) & "&searchMode=" & Trim(Mid(Request.Form("searchMode"), 1, 3)) & "&searchIn=" & Trim(Mid(Request.Form("searchIn"), 1, 3)) & "&forum=" & CInt(Request.QueryString("forum")) & "&searchSort=" & Trim(Mid(Request.Form("searchSort"), 1, 3)) 'Read in the active topic page to return to Case "Active" strReturnPage = "active_topics.asp" strReturnPageProperties = "?PN=" & CInt(Request.QueryString("PN")) 'Else return to the forum main page Case Else strReturnPage = "default.asp" strReturnPageProperties = "?FID=0" End Select %> Access Denied
<% = strTxtAccessDenied %>
 <% = strMainForumName %><% = strNavSpacer %><% = strTxtAccessDenied %>



<% = strTxtInsufficientPermison %>

<% 'Reset Server Objects Set rsCommon = Nothing adoCon.Close Set adoCon = Nothing 'If this is a banned IP then display an error message If Request.QueryString("M") = "IP" Then Response.Write("" & strTxtSorryFunctionNotPermiitedIPBanned & "") 'If the session ID's don't match then make sure the user has cookies enabled on there system ElseIf Request.QueryString("M") = "sID" Then Response.Write("" & strTxtSessionIDErrorCheckCookiesAreEnabled & "") 'If the users account is suspended then let them know ElseIf Request.QueryString("M") = "ACT" AND blnActiveMember = False Then Response.Write (vbCrLf & "
") 'If mem suspended display message If InStr(1, strLoggedInUserCode, "N0act", vbTextCompare) Then Response.Write(strTxtForumMemberSuspended) 'Else account not yet active Else Response.Write("" & strTxtForumMembershipNotAct & "

" & strTxtToActivateYourForumMem) End If 'If email is on then place a re-send activation email link If InStr(1, strLoggedInUserCode, "N0act", vbTextCompare) = False AND blnEmailActivation AND blnLoggedInUserEmail Then Response.Write("

" & strTxtResendActivationEmail & "") Response.Write("


") 'Display a login or registration button ElseIf intGroupID = 2 Then Response.Write vbCrLf & "   
" End If %>


<% '***** START WARNING - REMOVAL OR MODIFICATION OF THIS CODE WILL VIOLATE THE LICENSE AGREEMENT ****** If blnLCode = True Then If blnTextLinks = True Then Response.Write("Powered by Web Wiz Forums version " & strVersion & "") Else Response.Write("") End If Response.Write("
Copyright ©2001-2004 Web Wiz Guide") End If '***** END WARNING - REMOVAL OR MODIFICATION OF THIS CODE WILL VIOLATE THE LICENSE AGREEMENT ****** 'Display the process time If blnShowProcessTime Then Response.Write "

" & strTxtThisPageWasGeneratedIn & " " & FormatNumber(Timer() - dblStartTime, 4) & " " & strTxtSeconds & "
" %>