Count Lines in Pages

Contents of Page: default_bad.asp Number of Lines: 62 Last Modified: 8/22/2018 1:32:39 PM
0001: <!-- #include FILE="include/adovbs.inc" -->
0002: <!-- #include FILE="include/constants.inc" -->
0003: <!-- #include FILE="include/funcs.asp" -->
0004: <%
0005: 	mainpage = Trim(Request.QueryString("page"))
0006: 	MemberNo = Request.Cookies("MemberNo")
0007: 
0008: 	If UnderConstruction = "YES" Then
0009: 	   Response.Redirect("index.html")
0010: 	End If
0011: 	
0012: 	If mainpage = "" then
0013: 	   mainpage = "events.asp"
0014: 	End If
0015: 	
0016: 	If MemberNo <> "" then
0017:        Set rs = Server.CreateObject("ADODB.Recordset")
0018: 	   sqlString = "SELECT * FROM Folga_Master "	& _
0019: 							"WHERE MemberNo = '" & MemberNo & "'"
0020: 					
0021:        rs.Open sqlString, conn, adOpenStatic, adLockReadOnly, adCmdText	
0022:        StartPage = rs("StartPage").Value
0023:   
0024:        rs.Close
0025:        
0026:        Set rs = Nothing
0027:        
0028:        If StartPage = "Events" Then
0029: 	      StartPage = "events.asp"
0030: 	   Else
0031: 	      StartPage = "folga_messageboard.asp"
0032:        End If
0033: 
0034:        If StartPage <> "" then
0035:           mainpage = StartPage
0036:        End If
0037:     End If
0038: %>
0039: 	
0040: <html>
0041: <base target = "_top">
0042: <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
0043: <title>Friends of LusoGolf Association (FOLGA) Main Page</title>
0044: <meta name="GENERATOR" content="Microsoft FrontPage 6.0">
0045: <meta name="ProgId" content="FrontPage.Editor.Document">
0046: 
0047: <frameset rows="142,*">
0048:   <frame name="banner" scrolling="no" noresize target="main" src="top_frame.asp">
0049:   <frameset cols="200,*">
0050:     <frame name="contents" target="main" src="sidebar.asp">
0051:     <frame name="main" src="<%= mainpage %>" target="contents">
0052:   </frameset>
0053:   <noframes>
0054:   <body>
0055: 
0056:   <p>This page uses frames, but your browser doesn't support them.</p>
0057: 
0058:   </body>
0059:   </noframes>
0060: </frameset>
0061: 
0062: </html>