Count Lines in Pages

Contents of Page: default.asp Number of Lines: 93 Last Modified: 2/12/2026 2:27:13 PM
0001: <!-- #include FILE="include/adovbs.inc" -->
0002: <!-- #include FILE="include/constants.inc" -->	
0003: <%
0004: 
0005: Session("BaseSiteURL") = "default.asp"
0006: 
0007: 	mainpage = Trim(Request.QueryString("page"))
0008: 
0009:  	If UnderConstruction = "YES" and user <> "jt@folga.org" Then
0010:  	   Response.Redirect("index.html")
0011:  	End If
0012: 	
0013: 
0014:     mainpage = defaultstartpage
0015: 
0016: If noMorePicks = False Then
0017: mainpage = ""
0018: End If
0019: 
0020: 	
0021: 	If mainpage = "" then
0022: 	
0023: 	   mainpage = "messageboard.asp"
0024: '	   mainpage = "mmmain.asp"
0025: 	End If
0026: 	user = Request.Cookies("user")
0027: 	If user <> "" Then
0028:  
0029:   	Set rsg = Server.CreateObject("ADODB.Recordset")
0030: 	sqlString = "SELECT * FROM mmEntries " & _
0031: 			"WHERE Season = " & season & " " & _
0032: 			"AND EmailAddress = '" & user & "'"
0033: '	rsg.Open sqlString, conn, adOpenDynamic, adLockOptimistic, adCmdText
0034:     rsg.Open sqlString, conn, adOpenStatic, adLockReadOnly, adCmdText	
0035:     
0036:     If rsg.EOF Then
0037: ' 
0038:     Else
0039: 
0040: 
0041: 
0042:        StartPage = rsg("StartPage").Value
0043: 
0044: If noMorePicks = False Then
0045: StartPage = ""
0046: End If
0047: 
0048:        If StartPage = "" Then
0049:           StartPage = "Default"
0050:        End If	
0051:        Select Case StartPage
0052:           Case "Default"
0053:           mainpage = defaultstartpage
0054:           Case "Standings" 
0055:           mainpage = "standings.asp"
0056:           Case "MessageBoard"
0057:           mainpage = "messageboard.asp"
0058:           Case "MyStandings"
0059:           mainpage = "standingsmybuddies.asp"
0060:           Case "MyPicks&Top5"
0061:           mainpage = "mystandings_m.asp?DeskTop=Y"		  
0062:       End Select
0063: 	End If
0064: 	End If
0065: %>
0066: 	
0067: <html>
0068: 
0069: <head>
0070: 
0071: <link rel="icon" type="image/png" href="images/faveicon_mm.ico">
0072: 
0073: <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
0074: <title>March Madness Contest to Benefit Cancer Research</title>
0075: 
0076: </head>
0077: 
0078: <frameset rows="120,*" border="0">
0079:   <frame name="banner" scrolling="no" noresize target="main" src="header.asp">
0080:   <frameset cols="250,*">
0081:     <frame name="contents" target="main" src="Mmsidebar.asp">
0082:     <frame name="main" src="<%= mainpage %>" target="contents">
0083:   </frameset>
0084:   <noframes>
0085:   <body>
0086: 
0087:   <p>This page uses frames, but your browser doesn't support them.</p>
0088: 
0089:   </body>
0090:   </noframes>
0091: </frameset>
0092: 
0093: </html>