Count Lines in Pages

Contents of Page: PropLogin.asp Number of Lines: 111 Last Modified: 8/22/2018 1:33:10 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: 			Set rsm = Server.CreateObject("ADODB.Recordset")
0014: 	sqlString = "SELECT * FROM PropEvents WHERE ID = " & EventID 
0015:    
0016: 	rsm.Open sqlString, conn3, adOpenStatic, adLockReadOnly, adCmdText
0017: 
0018: 	StopMakingPicks = rsm("StopMakingPicks").Value
0019:     rsm.Close
0020: 	Set rsm = Nothing
0021: 
0022: 	If StopMakingPicks = "YES" Then
0023: 	Response.Redirect("PropStandings.asp")
0024: 	End If
0025: 
0026: '' Response.Redirect("propstandingsm.asp")
0027: '
0028: '		MyRegNo = Request.Cookies("SquarePoolsRegNumber")
0029: '
0030: '		If MyRegNo <> "" Then
0031: '
0032: '
0033: ''			Set rst = Server.CreateObject("ADODB.Recordset")
0034: ''			sqlString = "SELECT * FROM PropEntries WHERE RegNumber = '" & MyRegNo & "'"
0035: ''			rst.Open sqlString, conn3, adOpenStatic, adLockReadOnly, adCmdText
0036: ''			If rst.EOF Then
0037: '				Response.Redirect("proppicks2.asp?RegNumber=" & MyRegNo & "&EventID=" & EventID)
0038: ''			Else
0039: ''				Response.Redirect("proppicksdisplay2.asp?RegNumber=" & MyRegNo)
0040: ''			End If
0041: '
0042: '	  Else
0043: '	  Response.Redirect("my4registerinfo1.asp")
0044: '
0045: '      End If
0046: 
0047: 
0048: '	Response.Write("nextpage= " & NextPage)
0049: %>
0050: <html>
0051: 
0052: <head>
0053: <title>PickASquare - Proposition Bets Sign In</title>
0054: <link href="mm.css" rel="stylesheet" type="text/css">
0055: <script language="JavaScript">
0056: 		
0057: 		re = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/;
0058: 
0059: 		function checkEntry()
0060: 		{
0061: 			form = document.entry
0062: 			if (form.EmailAddress.value == "")
0063: 			{
0064: 				alert("Please enter an Email Address");
0065: 				form.EmailAddress.select();
0066: 				return false;				
0067: 			}
0068: 			return true;
0069: 		}
0070: 	</script>
0071: </head>
0072: 
0073: <body link="#00194C" vlink="#800000" alink="#800000" bgcolor="#ffffff"
0074: onload="document.entry.EmailAddress.focus()">
0075: 
0076: <form ACTION="PropLoginCheck.asp?EventID=<%= EventID %>" METHOD="POST" onsubmit="return checkEntry()"
0077: name="entry">
0078:   <input type="hidden" name="success" value="registrationmessage.html"><input type="hidden"
0079:   name="Address" value="<%= LYAddress %>"><input type="hidden" name="Zip"
0080:   value="<%= LYZip %>"><table border="0" width="604" cellpadding="1" cellspacing="0"
0081:   align="left">
0082:     <tr>
0083:            <tr>
0084:           <td width="114"></td>
0085:           <td align="left" class="bigblue" width="496"><br>
0086:           Please enter you email address:</td>
0087:         </tr>
0088:         <tr>
0089:           <td height="21" align="right" class="normbold" width="114"><div align="right"></div></td>
0090:           <td height="21" align="left" class="smallgreen" width="496"><input type="Text"
0091:           name="EmailAddress" size="54" value="<%= EmailAddress %>" class="norm" style="width:300px">&nbsp;
0092:           </td>
0093:         </tr>
0094:         <tr>
0095:           <td height="21" align="right" class="normbold" width="114"><div align="right"></div></td>
0096:           <td height="21" align="left" class="smallgreen" width="496">&nbsp; <input TYPE="submit"
0097:           VALUE="Continue" class="norm" style="background-color:#FAD2B8;"></td>
0098:         </tr>
0099:         <tr>
0100:           <td colspan="2" class="norm" width="588"><div align="center"></div></td>
0101:         </tr>
0102:         <tr align="center">
0103:           <td height="21" align="center" class="norm" colspan="2" width="588">&nbsp;&nbsp;&nbsp; <!input TYPE="reset" VALUE="Clear Contents" class="norm" style="background-color:#FAD2B8;"> </td>
0104:         </tr>
0105:       </table>
0106:       </div></td>
0107:     </tr>
0108:   </table>
0109: </form>
0110: </body>
0111: </html>