Count Lines in Pages

Contents of Page: mobile.asp Number of Lines: 79 Last Modified: 2/4/2026 1:42:11 PM
0001: <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
0002: 
0003: <!-- #include FILE="include/adovbs.inc" -->
0004: <!-- #include FILE="include/constants.inc" -->
0005: 
0006: <%
0007: 
0008: 
0009: Session("BaseSiteURL") = "mobile.asp"
0010: 
0011: 	user = Request.Cookies("user")
0012: 	If user <> "" Then
0013:  
0014:   	Set rsg = Server.CreateObject("ADODB.Recordset")
0015: 	sqlString = "SELECT * FROM mmEntries " & _
0016: 			"WHERE Season = " & season & " " & _
0017: 			"AND EmailAddress = '" & user & "'"
0018: '	rsg.Open sqlString, conn, adOpenDynamic, adLockOptimistic, adCmdText
0019:     rsg.Open sqlString, conn, adOpenStatic, adLockReadOnly, adCmdText	
0020:     
0021:     If rsg.EOF Then
0022: ' 
0023:     Else
0024: 
0025: 
0026: 
0027:        StartPage = rsg("StartPage").Value
0028: 
0029:        If StartPage = "" Then
0030:           StartPage = "Default"
0031:        End If	
0032:        Select Case StartPage
0033:           Case "Default"
0034:           mainpage = "sidebar_m.asp"
0035:           Case "Standings" 
0036:           mainpage = "standings_m.asp"
0037:           Case "MessageBoard"
0038:           mainpage = "messageboard_m.asp"
0039:           Case "MyStandings"
0040:           mainpage = "standingsmybuddies_m.asp"
0041:           Case "MyPicks&Top5"
0042:           mainpage = "mystandings_m.asp"		  
0043:       End Select
0044: 
0045: 
0046: 	End  If
0047: 	End If
0048: 	
0049: 	If mainpage = "" Then
0050: 		          mainpage = "sidebar_m.asp"
0051:     End If				  
0052: 
0053: %>
0054: 
0055: <html>
0056: <base target="_top">
0057: <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
0058: 
0059: <head>
0060: <title>March Madness Contest to Benefit Cancer Research</title>
0061: <meta name="viewport" content="width=device-width">
0062: <link rel="icon" type="image/png" href="images/faveicon_mm.ico">
0063: </head>
0064: 
0065: <frameset rows="98,*" border="0">
0066:   <frame name="banner" scrolling="no" noresize src="top_frame_m.asp" target="mobilemain">
0067:     <frame name="mobilemain" target="mobilemain" src="<%= mainpage %>">
0068:   </frameset>
0069:   <noframes>
0070:   <body>
0071: 
0072:   <p>This page uses frames, but your browser doesn't support them.</p>
0073: 
0074:   
0075:   </noframes>
0076: </frameset>
0077: 
0078: 
0079: