Count Lines in Pages

Contents of Page: decide_mainpage.asp Number of Lines: 35 Last Modified: 8/22/2018 1:32:38 PM
0001: <% @Language = "VBScript" %>
0002: 
0003: <!-- #include FILE="include/adovbs.inc" -->
0004: <!-- #include FILE="include/constants.inc" -->
0005: <!-- #include FILE="include/funcs.asp" -->
0006: <html>
0007: 
0008: <head>
0009: <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
0010: <meta name="GENERATOR" content="Microsoft FrontPage 4.0">
0011: <meta name="ProgId" content="FrontPage.Editor.Document">
0012: <title>Decide which Main Page to Display</title>
0013: </head>
0014: 
0015: <body>
0016:       <% 
0017: ' diff = cutofftime - todaytime      
0018:  If todayDate > cutoffdate Then
0019: '            Response.Redirect("mmmain.asp")
0020:             Response.Redirect("messageboard.asp")
0021:           Else
0022:             If todayDate = cutoffdate Then
0023:               If todaytime < cutofftime Then
0024:                 Response.Redirect("messageboard.asp")
0025: 
0026: 	           Else
0027:                 Response.Redirect("mmmain_dayofcutoff.asp")
0028: 	           End If
0029: 	        Else
0030: 	            Response.Redirect("mmmain.asp")   
0031: 	        End If
0032: 	      End If %>
0033: </body>
0034: 
0035: </html>