Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
456 B

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