home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 September / PCWorld_2000-09_cd.bin / Software / Topware / aspedit / _SETUP.1 / response.asp < prev    next >
Text File  |  1999-09-09  |  347b  |  16 lines

  1. <html>
  2.   <head>
  3.    <TITLE>response sample</TITLE>
  4.   </head>
  5.  <body bgcolor="#FFFFFF">
  6. <%Fname=request.querystring("Firstname")
  7.   Lname=request.querystring("Lastname")
  8.   If Fname="George" and Lname="Washington" then%>
  9.    Hi.<p>You must be the first president!
  10.    <%else%>
  11.      Hi!<p>Nice to Meet You
  12.    <%end if%>
  13.   </body>
  14. </html>
  15.  
  16.