Count Lines in Pages

Contents of Page: thankyoureg_m.asp Number of Lines: 85 Last Modified: 2/19/2026 1:48:19 PM
0001: <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
0002: <!-- #include FILE="include/adovbs.inc" -->
0003: <!-- #include FILE="include/constants.inc" -->
0004: <!-- #include FILE="include/funcs.asp" -->
0005: <% 
0006: 
0007: If reg2ndopen = "YES" Then
0008: pickspage = "picks2nd.asp"
0009: Else
0010: pickspage = "picks.asp"
0011: End If
0012: 
0013: 
0014: BaseSiteURL = Session("BaseSiteURL")
0015: 
0016: ReturnSiteURL = "https://folga.org/mm"
0017: 
0018: If BaseSiteURL = "default.asp" Then
0019: TableWidth="550"
0020: Else
0021: TableWidth="100%"
0022: ReturnSiteURL = "https://folga.org/mm/mobile"
0023: End If
0024: 
0025: 		emailaddress = Request.Cookies("user")
0026: 
0027: 
0028: 	Set rs = Server.CreateObject("ADODB.Recordset")
0029: 	sqlString = "SELECT * FROM mmEntries " & _
0030: 							"WHERE EmailAddress = '" & emailaddress & "' " & _
0031: 							"AND Season = " & season
0032: 	rs.Open sqlString, conn, adOpenStatic, adLockReadOnly, adCmdText
0033:         if rs.EOF then
0034: LoggedIn = ""
0035:         Else
0036: LoggedIn = "Y"
0037:            EntryID = rS("ID").Value
0038:            Fname = rS("FirstName").Value
0039:            Lname = rs("Name").Value
0040:            Email = rs("EmailAddress").Value
0041:            numEntries = CInt(rs("NumEntries").Value)
0042: 		num2ndEntries = CInt(rs("Num2ndEntries").Value)           
0043:         End If
0044: 		
0045: 		Sweet16 = NumEntries - 1
0046: 
0047: %>
0048: <html>
0049: 
0050: <head>
0051: <meta name="viewport" content="width=device-width">
0052: <meta http-equiv="Content-Language" content="en-us">
0053: <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
0054: <title>Registration Completed.&nbsp; Thank You!</title>
0055: 	<link href="mm.css" rel="stylesheet" type="text/css">
0056: 	<link href="https://mychinodes.org/desb.css" rel="stylesheet" type="text/css">	
0057: </head>
0058: 
0059: <body>
0060: 
0061: <table cellspacing="0" border="1" cellpadding="5" width="350" bordercolor="#FED87B">
0062:   <tr bgcolor="#FFFAF0">
0063:     <td VALIGN="TOP" colspan="3"><p align="center"><strong><em><font color="#ff0000"><big><font
0064:     face="Arial">Registration successful!</font> </big></big></big></font></em></strong></p>
0065:     <p align="center"><font size="3" face="Arial">Thank you for choosing to <i>make a
0066:     difference. 
0067:     </font></b></td>
0068:   </tr>
0069:   <tr>
0070:   <td class="norm">
0071:   <big><B>Your registration entitles you to:</b></big><br><br>
0072:   Main Contest Entries: <big><b><%= numEntries %></b></big><br>
0073:  <BR> Sweet 16 Contest Entries: <big><b><%= Sweet16 %></b></big>&nbsp;&nbsp;&nbsp;&nbsp;<a href="sweet16details_m.asp" target="_blank">Click here for details</a>.<br>
0074:   <BR>Biggest Loser Contest: <big><b>1</b></big>&nbsp;&nbsp;&nbsp;&nbsp;<a href="whatisBiggestLoser.asp" target="_blank">Click here for details</a>.<br>&nbsp;
0075:   </TD>
0076:   <tr bgcolor="#FFFAF0">
0077:     <td VALIGN="TOP" ><p align="center"><font size="4" face="Arial"><br>
0078:     Click <a href="<%= ReturnSiteURL %>" target="_top">here</a> to continue.</font></p>
0079: </td></tr>
0080: 
0081: 
0082: </table>
0083: </center></div>
0084: </body>
0085: </html>