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.

28 lines
678 B

  1. <%@ LANGUAGE = VBScript %>
  2. <% Option Explicit %>
  3. <!-- #include file="directives.inc" -->
  4. <% if Session("FONTSIZE") = "" then %>
  5. <!--#include file="iito.inc"-->
  6. <% else %>
  7. <!--#include file="iiapp.str"-->
  8. <%
  9. dim bScrolling
  10. If Session("hasDHTML") then
  11. bScrolling = "NO"
  12. else
  13. bScrolling = "YES"
  14. end if
  15. %>
  16. <HTML>
  17. <FRAMESET ROWS="<%= L_IIAPPHEADFRM_H %>,*" BORDER=NO FRAMESPACING=1 FRAMEBORDER=0>
  18. <FRAME SRC="iiapphd.asp" NAME="title" BORDER=NO FRAMESPACING=0 FRAMEBORDER=0 MARGINHEIGHT=0 MARGINWIDTH=0 SCROLLING=NO>
  19. <FRAME SRC="iiappmn.asp" NAME="head" SCROLLING=<%= bScrolling %> FRAMESPACING=0 BORDER=NO MARGINHEIGHT=5 MARGINWIDTH=5>
  20. </FRAMESET>
  21. </HTML>
  22. <% end if %>