home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 September / CHIPCD_9_99.iso / software / uaktualnienia / OptionPackPL / iis4_05.cab / fvform.asp < prev    next >
Text File  |  1998-04-27  |  2KB  |  83 lines

  1. <%
  2. ScriptLanguagePreference = Request.Cookies("ScriptLanguagePreference")
  3.  
  4.  
  5. LessonFile = Request.ServerVariables("SCRIPT_NAME")
  6.  
  7.   If ScriptLanguagePreference = "" Then
  8.     ScriptLanguagePreference = Request.QueryString("ScriptLanguagePreference")
  9.     If ScriptLanguagePreference = "" Then
  10.       Response.Redirect "iiselect.asp?LessonFile=" & Server.URLEncode(LessonFile)
  11.     End If
  12.   End If
  13.  
  14. Response.Expires = 0
  15.  
  16. If ScriptLanguagePreference = "VBScript" Then
  17.   finlesson = "finance.asp"
  18. Else
  19.   finlesson = "financej.asp"
  20. End If
  21.  
  22.  %>
  23.  
  24. <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
  25. <HTML><HEAD><TITLE>Future Value Calculation</TITLE> 
  26.  
  27. <SCRIPT LANGUAGE="JavaScript">
  28.     TempString = navigator.appVersion
  29.     if (navigator.appName == "Microsoft Internet Explorer"){    
  30. // Check to see if browser is Microsoft
  31.         if (TempString.indexOf ("4.") >= 0){
  32. // Check to see if it is IE 4
  33.             document.writeln('<link rel="stylesheet" type="text/css" href="/iishelp/common/coua.css">');
  34.         }
  35.         else {
  36.             document.writeln('<link rel="stylesheet" type="text/css" href="/iishelp/common/cocss.css">');
  37.         }
  38.     }
  39.     else if (navigator.appName == "Netscape") {                        
  40. // Check to see if browser is Netscape
  41.         document.writeln('<link rel="stylesheet" type="text/css" href="/iishelp/common/coua.css">');
  42.     }
  43.     else
  44.         document.writeln('<link rel="stylesheet" type="text/css" href="/iishelp/common/cocss.css">');
  45. </script>
  46.  
  47. <META NAME="ROBOTS" CONTENT="NOINDEX"></HEAD> 
  48.  
  49. <body bgcolor="#FFFFFF" text="#000000"><font face="Verdana,Arial,Helvetica">
  50.  
  51. <H3><A NAME="H3_37661422">Use this form to determine the future value of a savings plan.</A></H3> 
  52.  
  53. <FORM METHOD=POST ACTION="<%= finlesson %>"> 
  54.  
  55. <TABLE> 
  56. <TR> 
  57. <TD>How much do you plan to save each month? 
  58. <TD><INPUT TYPE=TEXT NAME=Payment> 
  59. <TR> <TD>Enter the expected interest annual percentage rate. 
  60. <TD><INPUT TYPE=TEXT NAME=APR> 
  61. <TR> 
  62. <TD>For how many months do you expect to save? 
  63. <TD><INPUT TYPE=TEXT NAME=TotPmts> 
  64. <TR> 
  65. <TD>Do you make payments at the beginning or end of month? 
  66. <TD><INPUT TYPE=RADIO NAME=PayType VALUE="Beginning" CHECKED>Beginning 
  67. <INPUT TYPE=RADIO NAME=PayType VALUE="End">End 
  68. <TR> 
  69. <TD>How much is in this savings account now? 
  70. <TD><INPUT TYPE=TEXT NAME=PVal> 
  71. <TR> 
  72. <TD> 
  73. <TD><INPUT TYPE=SUBMIT VALUE=" Calculate Future Value "> <input type="submit" name="" value="">
  74.  
  75. </TABLE> 
  76.  
  77. </FORM> 
  78.  
  79.  
  80.  
  81. </FONT> 
  82. </BODY> 
  83. </HTML>