Leaked source code of windows server 2003
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.

68 lines
2.4 KiB

  1. <%
  2. '==================================================
  3. ' File: sh_propfooter.asp
  4. '
  5. ' Synopsis: Serve Navigation button bar in bottom frameset of Property
  6. ' and Tabbed property pages
  7. '
  8. ' Copyright (c) Microsoft Corporation. All rights reserved.
  9. '================================================== %>
  10. <!-- #include file="inc_framework.asp" -->
  11. <%
  12. Call ServePropFooter()
  13. Function ServePropFooter()
  14. %>
  15. <html>
  16. <!-- Copyright (c) Microsoft Corporation. All rights reserved.-->
  17. <meta http-equiv="Content-Type" content="text/html; charset=<%=GetCharSet()%>">
  18. <meta http-equiv="PRAGMA" content="NO-CACHE">
  19. <head>
  20. <%
  21. Call SA_EmitAdditionalStyleSheetReferences("")
  22. %>
  23. <script language=JavaScript>
  24. var VirtualRoot = '<%=m_VirtualRoot%>';
  25. </script>
  26. <script language=JavaScript src="<%=m_VirtualRoot%>sh_page.js"></script>
  27. <script language=JavaScript src="<%=m_VirtualRoot%>sh_task.js"></script>
  28. <script language=JavaScript>
  29. function Init() {
  30. document.onkeypress = HandleKeyPress;
  31. top.main.EnableCancel();
  32. top.main.EnableOK();
  33. if (document.layers) {
  34. document.captureEvents(Event.KEYPRESS)
  35. }
  36. top.main.SA_SignalFooterIsLoaded();
  37. }
  38. function OnClickOK()
  39. {
  40. top.main.Next();
  41. }
  42. function OnClickCancel()
  43. {
  44. top.main.Cancel();
  45. }
  46. </script>
  47. </head>
  48. <BODY onLoad="Init()" xoncontextmenu="return false;" topmargin="0" leftmargin="0" rightmargin="0" onDragDrop="return false;" tabindex=-1>
  49. <div class='PageBodyIndent' >
  50. <FORM name="frmFooter" id="frmFooter">
  51. <DIV ID="PropertyPageButtons" class="ButtonBar" align="right" >
  52. <button class="TaskFrameButtons" type=button name="butOK" onClick="OnClickOK();" ><table cellpadding=0 cellspacing=0 class="TaskFrameButtonsNoBorder"><tr><td class="TaskFrameButtonsNoBorder"><img id="btnOKImage" src="<%=m_VirtualRoot%>images/butGreenArrow.gif"></td><td class="TaskFrameButtonsNoBorder" width=65 nowrap><%=L_OK_BUTTON%></td></tr></table></button>
  53. &nbsp;
  54. <button class="TaskFrameButtons" type="button" name="butCancel" onClick="OnClickCancel();"><table cellpadding=0 cellspacing=0 class="TaskFrameButtonsNoBorder"><tr><td class="TaskFrameButtonsNoBorder"><img id="btnCancelImage" src="<%=m_VirtualRoot%>images/butRedX.gif"></td><td class="TaskFrameButtonsNoBorder" width=65 nowrap><%=L_CANCEL_BUTTON%></td></tr></table></button>
  55. &nbsp;&nbsp;
  56. </div>
  57. </form>
  58. </div>
  59. </BODY>
  60. </HTML>
  61. <%
  62. End Function
  63. %>