home *** CD-ROM | disk | FTP | other *** search
/ Excalibur 71 / Excalibur_71_cd2.bin / Microsoft_Internet_50 / ieak5.exe / RCDATA / CABINET / reconfg1.asp < prev    next >
Text File  |  1999-02-24  |  2KB  |  79 lines

  1. <%
  2. '/=======================================================>
  3. '/            Reconfg Server Sample Page 01
  4. '/                  Daniel Jacobson
  5. '/              Modified by Edward C Kubaitis
  6. '/                  Rev .07    9/98
  7. '/=======================================================>
  8. '/=======================================================>
  9. '/ Get all of the varriables from the ICW
  10. '/and get them set into varriables
  11. '/=======================================================>
  12.     If (HOUR(TIME) < 10) Then
  13.     H="0"&HOUR(TIME)
  14.     End If
  15.     If (HOUR(TIME) > 9) Then
  16.     H=HOUR(TIME)
  17.     End If
  18.     If (MINUTE(TIME) < 10) Then
  19.     M="0"&MINUTE(TIME)
  20.     End If
  21.     If (MINUTE(TIME) > 9) Then
  22.     M=MINUTE(TIME)
  23.     End If
  24.     If (SECOND(TIME) < 10) Then
  25.     S="0"&SECOND(TIME)
  26.     End If
  27.     If (SECOND(TIME) > 9) Then
  28.     S=SECOND(TIME)
  29.     End If
  30.  
  31.     THETIME = H & M & S
  32.  
  33.     If (MONTH(DATE) < 10) Then
  34.     MO="0"&MONTH(DATE)
  35.     End If
  36.     If (MONTH(DATE) > 9) Then
  37.      MO=MONTH(DATE)
  38.     End If
  39.     If (DAY(DATE) < 10) Then
  40.     D="0"&DAY(DATE)
  41.     End If
  42.     If (DAY(DATE) > 9) Then
  43.     D=DAY(DATE)
  44.     End If
  45.  
  46.     THEDATE = YEAR(date) & MO & D
  47.  
  48. %>
  49. <HTML>
  50. <HEAD>
  51. <TITLE>IEAK Sample</TITLE>
  52. </HEAD>
  53. <BODY bgColor=THREEDFACE color=WINDOWTEXT>
  54.  
  55.  
  56. <FORM NAME="PAGEID" ACTION="PAGE1" STYLE="background:transparent"></FORM>
  57. <FORM NAME="BACK" ACTION="" STYLE="background:transparent"></FORM>
  58. <FORM NAME="PAGETYPE" ACTION="" STYLE="background:transparent"></FORM>
  59. <FORM NAME="NEXT" ACTION="http://myserver/reconfg2.asp" STYLE="background:transparent">
  60.  
  61. <FONT style="font: 8pt ' ms sans serif' black">
  62.  
  63. <B>Re-Establishing Your Acme Internet Services Account</B>
  64.  
  65. <P>
  66.  
  67. <TABLE style="font: 8pt ' ms sans serif' black" cellpadding=5>
  68. <TR><TD COLSPAN=2>Please enter your e-mail name.</TD></TR>
  69. <TR><TD>E-Mail Name </TD><TD><INPUT NAME="EMAILNAME" TYPE="TEXT" SIZE="25"></TD></TR>
  70. <TR><TD COLSPAN=2>Please enter your e-mail password.</TD></TR>
  71. <TR><TD>E-Mail Password </TD><TD><INPUT NAME="EMAILPASSWORD" TYPE="TEXT" SIZE="25"></TD></TR>
  72. <INPUT TYPE="HIDDEN" NAME="EMAILNAME" VALUE="<% =EMAILNAME %>">
  73. <INPUT TYPE="HIDDEN" NAME="EMAILPASSWORD" VALUE="<% =EMAILPASSWORD %>">
  74. </TABLE>
  75.  
  76.  
  77. </FORM>
  78. </BODY>
  79. </HTML>