home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 9 / IOPROG_9.ISO / contrib / iis4 / iis4_03.cab / iiscript.asp < prev    next >
Encoding:
Text File  |  1997-09-07  |  443 b   |  30 lines

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