Count Lines in Pages

Contents of Page: copylastyears.asp Number of Lines: 97 Last Modified: 8/22/2018 1:32:37 PM
0001: <% @Language = "VBScript" %>
0002: 
0003: <!-- #include FILE="include/adovbs.inc" -->
0004: <!-- #include FILE="include/homeURL.inc" -->
0005: <!-- #include FILE="include/constants.inc" -->
0006: 
0007: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
0008: 
0009: <%
0010:    from = "copylastyears.asp"
0011: '	from = Request.QueryString("from")
0012: '	errorvalue = Request.QueryString("error")
0013: '	If Request.Cookies("user") <> "" Then
0014: '		loginName = Request.Cookies("user")
0015: '	Else
0016: '		loginName = ""
0017: '	End If
0018: 
0019: %>
0020: 
0021: <html>
0022: <head>
0023: 	<title>March Madness - Copy information from last year</title>
0024: 	<link href="mm.css" rel="stylesheet" type="text/css">
0025: 
0026: 	<script language="Javascript">
0027: 		function sendPwd()
0028: 		{
0029: 			form = document.login;
0030: 			if (form.EmailAddress.value == "")
0031: 			{
0032: 				alert('Please type in your Email Address requesting your Password');
0033: 				return;
0034: 			}
0035: 			window.location = "sendPassword.asp?user="+escape(form.EmailAddress.value);
0036: 		}
0037: 		
0038: 		function focusTextBox()	{
0039: 			form = document.login;
0040: 			if (form.EmailAddress.value == "")	{
0041: 				form.EmailAddress.select();
0042: 			}
0043: 			else	{
0044: 				form.Password.focus();
0045: 			}
0046: 		}
0047: 	</script>
0048: </head>
0049: 
0050: <body bgcolor="#ffffff" onload="focusTextBox()">
0051: <%	If regopen <> "YES" and reg2ndopen <> "YES" Then	%>
0052: 					Registration is closed. Thank you for visiting our website.
0053: <%	Else	%>
0054: 
0055: <form method="post" name="login" action="registerinfo.asp?CopyEmail=CopyEmail">
0056: 	<table border="0" cellpadding="0" cellspacing="0" width="437" align="center">
0057: 		<tr>
0058: 			<td class="bigblue" colspan="2">
0059:               <p align="center">Enter your email address below to retrieve your
0060:               information from your previous registration.</p>
0061:             </td>
0062: 		</tr>
0063: 		<tr>
0064: 			<td class="normRed" colspan="2">
0065: 				&nbsp;<br>
0066: 			</td>
0067: 		</tr>
0068: 		<tr>
0069: 			<td class="normbold">Email Address:&nbsp;</td>
0070: 			<td class="norm">
0071: 				<input type="Text" name="EmailAddress" size="35" value="<%= loginName %>">
0072: 			</td>
0073: 		</tr>
0074: 		<tr>
0075: 			<td class="normbold"></td>
0076: 			<td class="norm">
0077: 			</td>
0078: 		</tr>
0079: 		<tr>
0080: 			<td class="normbold" colspan="2" align="center">	
0081: 				&nbsp;<br><input type="Submit" value="Copy information from previous resgistration" style="background-color:#FAD2B8;">
0082: 			</td>
0083: 		</tr>
0084: 	</table>
0085: 	<table border="0" cellpadding="0" cellspacing="0" width="300" align="center">
0086: 		<tr><td class="norm">&nbsp;</td></tr>
0087: 		<tr>
0088: 			<td class="norm" align="center">
0089: 				&nbsp;
0090: 			</td>
0091: 		</tr>
0092: 	</table>
0093: </form>
0094: 
0095:  <% End If %>	
0096: </body>
0097: </html>