% Option Explicit %> <% '**************************************************************************************** '** Copyright Notice '** '** Web Wiz Guide - Web Wiz Guestbook '** '** 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.com '** '** or at: - '** '** Web Wiz Guide, PO Box 4982, Bournemouth, BH8 8XP, United Kingdom '** '**************************************************************************************** 'Buffer the response Response.Buffer = True 'Dimension variables Dim strName 'Holds the Users name Dim strEmailAddress 'Holds the Users e-mail address Dim strCountry 'Holds the users country Dim strHomepage 'Holds the Users homepage Dim strComments 'Holds the Users comments Dim dtmEntryDate 'Holds the date the commnets where made Dim intRecordPositionPageNum 'Holds the record position Dim intRecordLoopCounter 'Loop counter for displaying the guestbook records Dim intTotalNumGuestbookEntries 'Holds the total number of records in the database Dim intTotalNumGuestbookPages 'Holds the total number of pages in the database Dim intLinkPageNum 'Holds the page number to be linked to 'If this is the first time the page is displayed then the guestbook record position is set to page 1 If Request.QueryString("PagePosition") = "" Then intRecordPositionPageNum = 1 'Else the page has been displayed before so the guestbook record postion is set to the Record Position number Else intRecordPositionPageNum = CInt(Request.QueryString("PagePosition")) End If 'Initalise the strSQL variable with an SQL statement to query the database by selecting all tables ordered by the decending date strSQL = "SELECT " & strDbTable & "Comments.* " & _ "FROM " & strDbTable & "Comments " If strDatabaseType = "SQLServer" Then strSQL = strSQL & "WHERE " & strDbTable & "Comments.Authorised = 1 " Else strSQL = strSQL & "WHERE " & strDbTable & "Comments.Authorised = true " End If strSQL = strSQL & "ORDER BY Date_stamp DESC;" 'Set the cursor type property of the record set to dynamic so we can naviagate through the record set rsCommon.CursorType = 3 'Query the database rsCommon.Open strSQL, adoCon 'Set the number of records to display on each page by the constant set at the top of the script rsCommon.PageSize = intRecordsPerPage 'Get the guestbook record poistion to display from If NOT rsCommon.EOF Then rsCommon.AbsolutePage = intRecordPositionPageNum %>
|
| Comments by HELEN PIVIROTTO helen.piviro@snet.net 9/13/07 I ENJOY ATTENDING THE REUNIONS VERY MUCH.THIS YEARS EVENT MADE ME FEEL LIKE I AM PART OF A "GIANT FAMILY REUNION",A FAMILY I HAVE ALWAYS BEEN PROUD AND HONORED TO BELONG TO. MY HUSBANDS "OTHER FAMILY"THIS YEARS REUNION WAS OUTSTANDING. THE CEREMONY AT FORT KNOX AND PRESSENCE OF FAMILY OF THOSE KIA WAS REVERANT. THANK-YOU TO ALL OF YOU THAT MAKE THIS POSSIBLE. GOD BLESS AMERICA AND GOD BLESS ALL OF YOU!!!! |
| Comments by (Carolyn) Sue Jarrett SUZQJ@aol.com 9/10/07
|
| Comments by Barb Moreno puppytoes@charter.net 6/29/07 Ladies |
| Comments by Pat Slone patandkerm@yahoo.com 5/25/07 Hope to see everybody in Louisville this year. Pat Slone, wife of Kermit Slone--Ktrp 67/68
|
| Barb Moreno puppytoes@charter.net 3/9/07 ladies - i am in need of
volunteers to work the ladies table at the reunion. at this table we will be selling our remaining cookbooks as well as this years project "the blackhorse throw" . we will need
to have someone (or 2) to be at the table in 2 hour shifts beginning on the first day of the reunion - thursday- from 10am until 5pm. then again on friday following the ladies
meeting about noon until 5pm. we will not be set up on Saturday due to being at Fort Knox all day. I will then open the table following the banquet saturday nite and again on
Sunday while everyone is leaving. Remember we all agreed to do these projects not lets all help do it. |
| Comments by Barb Moreno puppytoes@charter.net 1-28-07 The Ladies of the Blackhorse
would like to express their condolences to the Mike Bishop family of Beloit Wi. Mike a member of F Troop, passed away on January 24th. Our prayers and thoughts are with Barb
and the family in this time of sorrow. Prayers and condolences may be left at www.daleymurphywisch.com Rest in Peace at Fiddlers
Green. |
|
|||
| Hello Barb; I served in HHT 2/11 A.C.R. 68-69.The cookbook arrived yesterday in fine shape. It was
just a few days late for my Daughter's 33rd Birthday present. But hey she was tickled pink to get it. Last Labor Day she came over to cook at our House,
well she cooked for a while then came ask me where the canned corn was. I showed her, then she picked one 15oz can yellow Kernel and 1 can cream style
corn, put both in a cooking pan, stirred and cooked a few minutes. Hey it was good. Think you Barbara for the hard work on the cookbook, and everyone
else involved. |
|||
| United States | |||
| <%
'If there are no rcords in the database display an error message
If rsCommon.EOF Then
'Tell the user there are no records to show
Response.Write " There are no records in the guestbook database" Response.Write " Please check back later" Response.End 'Display the guestbook Else 'Count the number of enties in the guestbook database intTotalNumGuestbookEntries = rsCommon.RecordCount 'Count the number of pages there are in the guestbook database calculated by the PageSize attribute set above intTotalNumGuestbookPages = rsCommon.PageCount 'Display the HTML number number the total number of pages and total number of records in the guestbook database %>
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||