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.

32 lines
1.1 KiB

  1. <!-- ############################################################################ -->
  2. <!-- ## UDDI Services ## -->
  3. <!-- ## Copyright (c) Microsoft Corporation. All rights reserved. ## -->
  4. <!-- ############################################################################ -->
  5. <%@ Page Language='C#' %>
  6. <%@ Register TagPrefix='uddi' Namespace='UDDI.Web' Assembly='uddi.web' %>
  7. <uddi:SecurityControl UserRequired='true' Runat='server' />
  8. <html>
  9. <head>
  10. <link href='../stylesheets/uddi.css' rel='stylesheet' type='text/css'>
  11. </head>
  12. <body oncontextmenu='Window_OnContextMenu()' class='contextFrame'>
  13. <table cellpadding='0' cellspacing='0' width='100%' height='100%'>
  14. <tr>
  15. <td align='left' valign='middle'>
  16. <uddi:UddiLabel Text='[[HEADING_SEARCH]]' CssClass='contextFrame' Runat='server' /></b>
  17. </td>
  18. </tr>
  19. </table>
  20. <script language='javascript'>
  21. function Window_OnContextMenu()
  22. {
  23. var e = window.event;
  24. e.cancelBubble = true;
  25. e.returnValue = false;
  26. }
  27. </script>
  28. </body>
  29. </html>