Count Lines in Pages

Contents of Page: AddPaidGet.asp Number of Lines: 95 Last Modified: 8/22/2018 1:32:32 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: 
0052: 
0053: <form method="post" name="login" action="signup.asp?CopyEmail=CopyEmail">
0054: 	<table border="0" cellpadding="0" cellspacing="0" width="400" align="center">
0055: 		<tr>
0056: 			<td class="bigblue" colspan="2">
0057:               <p align="center">Enter your email address below to retrieve your
0058:               information from last year's registration.</p>
0059:             </td>
0060: 		</tr>
0061: 		<tr>
0062: 			<td class="normRed" colspan="2">
0063: 				&nbsp;<br>
0064: 			</td>
0065: 		</tr>
0066: 		<tr>
0067: 			<td class="normbold">Email Address:&nbsp;</td>
0068: 			<td class="norm">
0069: 				<input type="Text" name="EmailAddress" size="35" value="<%= loginName %>">
0070: 			</td>
0071: 		</tr>
0072: 		<tr>
0073: 			<td class="normbold"></td>
0074: 			<td class="norm">
0075: 			</td>
0076: 		</tr>
0077: 		<tr>
0078: 			<td class="normbold" colspan="2" align="center">	
0079: 				&nbsp;<br><input type="Submit" value="Go to Maintenance Screen" style="background-color:#FAD2B8;">
0080: 			</td>
0081: 		</tr>
0082: 	</table>
0083: 	<table border="0" cellpadding="0" cellspacing="0" width="300" align="center">
0084: 		<tr><td class="norm">&nbsp;</td></tr>
0085: 		<tr>
0086: 			<td class="norm" align="center">
0087: 				&nbsp;
0088: 			</td>
0089: 		</tr>
0090: 	</table>
0091: </form>
0092: 
0093: 
0094: </body>
0095: </html>