home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 February / CHIP_2_98.iso / software / pelne / optionp / iis4_03.cab / iiscript.asp < prev    next >
Text File  |  1997-11-12  |  471b  |  31 lines

  1. <%@ LANGUAGE=VBScript %>
  2. <% Option Explicit %>
  3. <% Response.Expires = 0 %>
  4.  
  5. <HTML>
  6. <HEAD>
  7. <SCRIPT LANGUAGE="JavaScript">
  8.  
  9. <% 
  10. dim action, actions
  11.  
  12. if Request.QueryString("actions") <> "" then
  13.     
  14.     actions = request.QueryString("actions")
  15.     
  16.     if Request.QueryString("actions").count > 1 then
  17.         for each action in actions
  18.             response.write action    
  19.         next
  20.     else
  21.         response.write actions
  22.     end if 
  23. end if
  24. %>
  25.  
  26. </SCRIPT>
  27. </HEAD>
  28.  
  29. <BODY>
  30. </BODY>
  31. </HTML>