<% Option Explicit %> <% '**************************************************************************************** '** Copyright Notice '** '** Web Wiz Guide - Web Wiz Forums '** '** Copyright 2001-2002 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.com '** '** or at: - '** '** Web Wiz Guide, PO Box 4982, Bournemouth, BH8 8XP, United Kingdom '** '**************************************************************************************** 'Set the response buffer to true as we maybe redirecting Response.Buffer = True 'Dimension variables Dim rsMembers 'Holds the Database Recordset for the forum members Dim rsModerators 'Holds the recordset to see if the user is a moderator Dim strUsername 'Holds the users username Dim strHomepage 'Holds the users homepage if they have one Dim strEmail 'Holds the users e-mail address Dim blnShowEmail 'Boolean set to true if the user wishes there e-mail address to be shown Dim lngUserID 'Holds the new users ID number Dim intNumOfPosts 'Holds the number of posts the user has made Dim intStatus 'Holds the users interger status Dim strStatus 'Holds the users status Dim dtmRegisteredDate 'Holds the date the usre registered Dim strReturnPage 'Holds the page to return to Dim intTotalNumMembersPages 'Holds the total number of pages Dim intTotalNumMembers 'Holds the total number of forum members Dim intRecordPositionPageNum 'Holds the page number we are on Dim intRecordLoopCounter 'Recordset loop counter Dim dtmLastPostDate 'Holds the date of the users las post Dim intLinkPageNum 'Holds the page number to link to Dim strReturnPageProperties 'Holds the properties of the return page Dim strSearchCriteria 'Holds the search critiria Dim strSortBy 'Holds the way the records are sorted Dim intSortSelectField 'Holds the sort selection to be shown in the sort list box 'Initalise variables blnShowEmail = False 'Get the forum page to return to Select Case Request.QueryString("ReturnPage") Case "Topic" 'Read in the forum and topic to return to strReturnPage = "display_forum_topics.asp" strReturnPageProperties = "?ReturnPage=Topic&ForumID=" & CInt(Request.QueryString("ForumID")) & "&PagePosition=" & CInt(Request.QueryString("PagePosition")) 'Read in the thread and forum to return to Case "Thread" strReturnPage = "display_topic_threads.asp" strReturnPageProperties = "?ReturnPage=Thread&ForumID=" & CInt(Request.QueryString("ForumID")) & "&TopicID=" & CLng(Request.QueryString("TopicID")) & "&PagePosition=" & CInt(Request.QueryString("PagePosition")) & "&ThreadPage=" & Request.QueryString("ThreadPage") 'Read in the search to return to Case "Search" strReturnPage = "search.asp" strReturnPageProperties = "?ReturnPage=Search&SearchPagePosition=" & Request.QueryString("SearchPagePosition") & "&search=" & Server.URLEncode(Request.QueryString("search")) & "&searchMode=" & Request.QueryString("searchMode") & "&searchIn=" & Request.QueryString("searchIn") & "&forum=" & Request.QueryString("forum") & "&searchSort=" & Request.QueryString("searchSort") 'Read in the private message to return to Case "pm" strReturnPage = "pm_welcome.asp" strReturnPageProperties = "?ReturnPage=pm" 'Read in the active topic page to return to Case "Active" strReturnPage = "active_topics.asp" strReturnPageProperties = "?PagePosition=" & CInt(Request.QueryString("PagePosition")) 'Else return to the forum main page Case Else strReturnPage = "default.asp" strReturnPageProperties = "?ForumID=0" End Select 'If this is the first time the page is displayed then the members record position is set to page 1 If Request.QueryString("MemPagePosition") = "" Then intRecordPositionPageNum = 1 'Else the page has been displayed before so the members page record postion is set to the Record Position number Else intRecordPositionPageNum = CInt(Request.QueryString("MemPagePosition")) End If 'Get the search critiria for the members to display If NOT Request.QueryString("find") = "" Then strSearchCriteria = Trim(Mid(Request.QueryString("find"), 1, 15)) End If 'Take out parts of the username that are not permitted strSearchCriteria = Replace(strSearchCriteria, "password", "", 1, -1, 1) strSearchCriteria = Replace(strSearchCriteria, "author", "", 1, -1, 1) strSearchCriteria = Replace(strSearchCriteria, "code", "", 1, -1, 1) strSearchCriteria = Replace(strSearchCriteria, "username", "", 1, -1, 1) 'Get rid of milisous code strSearchCriteria = formatSQLInput(strSearchCriteria) 'Get the sort critiria Select Case Request.QueryString("Sort") Case "post" strSortBy = "No_of_posts DESC" intSortSelectField = 1 Case "latestUsers" strSortBy = "Join_date DESC" intSortSelectField = 2 Case "oldestUsers" strSortBy = "Join_date ASC" intSortSelectField = 3 Case "group" strSortBy = "Status DESC" intSortSelectField = 4 Case Else strSortBy = "Username ASC" intSortSelectField = 0 End Select %> Forum Members List
<% = strTxtForumMembersList %>
<% = strTxtReturnToDiscussionForum %>

<% = strTxtMemberSearch %> : "> "> "> "> "> "> "> "> "> ">
<% = strTxtAll %> A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
<% 'If the user has not logged in dispaly an error message If lngLoggedInUserID = 0 Then Response.Write vbCrLf & "" & strTxtMustBeRegistered & "

" Response.Write vbCrLf & "  " 'If the user has logged in then read in the members from the database and dispaly them Else 'Intialise the ADO recordset object Set rsMembers = Server.CreateObject("ADODB.Recordset") 'Initalise the strSQL variable with an SQL statement to query the database strSQL = "SELECT tblAuthor.Author_ID, tblAuthor.Username, tblAuthor.Homepage, tblAuthor.No_of_posts, tblAuthor.Join_date, tblAuthor.Status, tblAuthor.Active " strSQL = strSQL & "FROM tblAuthor " strSQL = strSQL & "WHERE (((tblAuthor.Username) Like '" & strSearchCriteria & "%')) " strSQL = strSQL & "ORDER BY tblAuthor." & strSortBy & ";" 'Set the cursor type property of the record set to dynamic so we can naviagate through the record set rsMembers.CursorType = 1 'Query the database rsMembers.Open strSQL, strCon 'Set the number of records to display on each page rsMembers.PageSize = 25 'If there are no memebers to display then show an error message If rsMembers.EOF Then Response.Write "" & strTxtSorryYourSearchFoundNoMembers & "" 'If there is a recordset returned by the query then read in the details Else 'Set the page number to display records for rsMembers.AbsolutePage = intRecordPositionPageNum 'Count the number of members there are in the database by returning the number of records in the recordset intTotalNumMembers = rsMembers.RecordCount 'Count the number of pages there are in the database calculated by the PageSize attribute set above intTotalNumMembersPages = rsMembers.PageCount 'Display the HTML for the total number of pages and total number of records in the database for the users Response.Write vbCrLf & " " Response.Write vbCrLf & " " Response.Write vbCrLf & " " Response.Write vbCrLf & " " Response.Write vbCrLf & "
" 'If we are showing all the forum memebers then display how many members there are If Request.QueryString("find") = "" Then Response.Write vbCrLf & " " & strTxtThereAre & " " & intTotalNumMembers & " " & strTxtForumMembersOn & " " & intTotalNumMembersPages & " " & strTxtPageYouAerOnPage & " " & intRecordPositionPageNum 'Else display how many results were fround from the search Else Response.Write vbCrLf & " " & strTxtYourSearchMembersFound & " " & intTotalNumMembers & " " & strTxtMatches End If Response.Write vbCrLf & "
" Response.Write vbCrLf & "
" %>
<% = strTxtSortResultsBy %>
<% If blnPrivateMessages = True Then %> <% End If %> <% 'Intialise the ADO recordset object Set rsModerators = Server.CreateObject("ADODB.Recordset") 'For....Next Loop to loop through the recorset to display the forum members For intRecordLoopCounter = 1 to 25 'If there are no member's records left to display then exit loop If rsMembers.EOF Then Exit For 'Initialise varibles dtmLastPostDate = "" 'Read in the profile from the recordset lngUserID = CLng(rsMembers("Author_ID")) strUsername = rsMembers("Username") 'strEmail = rsMembers("Author_email") 'blnShowEmail = CBool(rsMembers("Show_email")) strHomepage = rsMembers("Homepage") intNumOfPosts = CInt(rsMembers("No_of_posts")) dtmRegisteredDate = CDate(rsMembers("Join_date")) intStatus = CInt(rsMembers("Status")) 'If the users account is not active make there account level guest If CBool(rsMembers("Active")) = False Then intStatus = 0 'Turn the members status number returned from the database into a string value Select Case intStatus 'Guest status Case 0 strStatus = strTxtGuest & "
" 'Standard member status Case 1 strStatus = strTxtStandardMember & "
" 'Super member status Case 2 strStatus = strTxtGoldMember & "
" 'Power member status Case 3 strStatus = strTxtPlatinumMember & "
" End select 'Now we need to see if the user is a moderator as if they are they will have edit options 'Initalise the strSQL variable with an SQL statement to query the database to get the email address of the moderator(s) for this forum If strDatabaseType = "SQLServer" Then strSQL = "EXECUTE wwfSpModerator @lngUserID = " & lngUserID Else strSQL = "SELECT TOP 1 tblModerator.Moderator_ID FROM tblModerator " strSQL = strSQL & "WHERE tblModerator.Author_ID=" & lngUserID & ";" End If 'Query the database rsModerators.Open strSQL, strCon 'If theres a record returened then this member is a moderator If NOT rsModerators.EOF Then strStatus = strTxtForumModerator & " " 'If the user ID is 1 then this is the admin account If lngUserID = 1 Then strStatus = strTxtForumAdministrator & " " 'Write the HTML of the Topic descriptions as hyperlinks to the Topic details and message %> <% If blnPrivateMessages = True Then %> <% End If %> <% 'Move to the next record in the database rsMembers.MoveNext 'Close the post date recordset rsModerators.Close 'Loop back round Next End If %>
<% = strTxtUsername %> <% = strTxtType %> <% = strTxtRegistered %> <% = strTxtPosts %> <% = strTxtHomepage %><% = strTxtAddBuddy %><% = strTxtSearch %>
<% = strUsername %> <% = strStatus %> <% = DateFormat(dtmRegisteredDate, saryDateTimeData) %> <% = intNumOfPosts %> <% If NOT strHomepage = "" Then Response.Write("") %><% = strTxtAddToBuddyList %><% If Request.QueryString("ReturnPage") = "Search" Then %>Search for other posts by <% = strUsername %><% Else %><% = strTxtSearchForPosts %> <% = strUsername %><% End If %>
<% 'If there is more than 1 page of members then dispaly drop down list to the other members If intTotalNumMembersPages > 1 Then 'Display an drop down list to the other members in list Response.Write vbCrLf & " " End If %>
" & strTxtPage & " " Response.Write vbCrLf & " " & strTxtOf & " " & intTotalNumMembersPages & "
<% 'Reset Server Variables rsMembers.Close Set rsMembers = Nothing Set rsModerators = Nothing End If 'Reset Server Objects Set adoCon = Nothing Set strCon = Nothing %>

<% '***** 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 6.34") Else Response.Write("") End If Response.Write("
Copyright ©2001-2002 Web Wiz Guide") End If '***** END WARNING - REMOVAL OR MODIFICATION OF THIS CODE WILL VIOLATE THE LICENSE AGREEMENT ****** %>