Count Lines in Pages

Contents of Page: PropBetsMain.asp Number of Lines: 59 Last Modified: 8/22/2018 1:33:09 PM
0001: <% @Language = "VBScript" %>
0002: <!-- #include FILE="include/adovbs.inc" -->
0003: <!-- #include FILE="include/constants.inc" -->
0004: <!-- #include FILE="include/funcs.asp" -->
0005: <%
0006: 
0007: 	EventID = Request.QueryString("EventID")
0008: 
0009: 	If EventID = "" Then
0010: 	EventID = PROPDEFAULTEVENT
0011: 	End If
0012: 
0013: 	If EventId = "" Then EventID = 1
0014: 
0015: 		Set rsm = Server.CreateObject("ADODB.Recordset")
0016: 	sqlString = "SELECT * FROM PropEvents WHERE ID = " & EventID 
0017:    
0018: 	rsm.Open sqlString, conn3, adOpenStatic, adLockReadOnly, adCmdText
0019: 
0020: 	EventDescription = rsm("EventDescription").Value
0021: 	Deadline = rsm("Deadline").Value
0022:     rsm.Close
0023: 	Set rsm = Nothing
0024: %>
0025: <html>
0026: 
0027: <head>
0028: <meta http-equiv="Content-Language" content="en-us">
0029: <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
0030: <link href="mm.css" rel="stylesheet" type="text/css">
0031: <base target="main">
0032: <title>Pick A Square 4 City of Hope - FUNdraiser for Cancer Research</title>
0033: </head>
0034: 
0035: <body>
0036: 
0037: <table border="0" width="90%"">
0038: 
0039:   <tr>
0040:     <td class="bigblue"><p align="left"><big><br>
0041:     </big><font face="Arial"><%= EventDescription %> Proposition Bets</td>
0042: 	</tr>
0043: 	<tr><td class="norm"><big><br>
0044: 
0045: If you are not familiar, "prop bets" is a way to make a sporting event more interesting by entering guesses on various statitics of the sporting event.
0046: <br><br>Prop bets are very popular during the Super Bowl, but can be applied to virtually any sporting event that has some form of statistics.  
0047: <br><br>Prop bets are unusual wagers, that in most cases has nothing to do with the actual outcome of the event.<br><br>
0048: 
0049: It just takes a couple of minutes to make your proposition bet selections and then see how you compare to your your buddies from across the street or across the country.  And it is completed <b>free</b> to participate!<br><br>
0050: 
0051: <a href="PropLogin.asp">Click here</a> to make your selections.   You can make/change your selections until <b><%= Deadline %></b></font></td>
0052:   </tr>
0053:   <tr>
0054:     <td class="norm" width="1013"></td>
0055:   </tr>
0056:  
0057: </table>
0058: </body>
0059: </html>