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.

59 lines
1.8 KiB

  1. <html>
  2. <head>
  3. <meta http-equiv="MSThemeCompatible" content="Yes">
  4. <Title>View Remote Computer</Title>
  5. <Script Language="JScript" Src="commonFunc.js"></script>
  6. <link rel="STYLESHEET" type="text/css" href="msinfohss.css">
  7. <link rel="STYLESHEET" type="text/css" href="hcp://system/css/shared.css">
  8. <Script language="javascript">
  9. function DisplayLocStrings() {
  10. Caption.innerHTML = TAG_VIEWREMOTEINFO;
  11. BtnOpen.value = TAG_OPEN;
  12. BtnCancel.value = TAG_CANCEL;
  13. }
  14. function fnOnLoad() {
  15. DisplayLocStrings();
  16. if(window.dialogArguments)
  17. txtRemoteComputer.value = window.dialogArguments;
  18. }
  19. function fnOpen() {
  20. if(txtRemoteComputer.value) {
  21. window.returnValue = txtRemoteComputer.value.replace(/\\/g,"");//remote
  22. event.returnValue = false;
  23. window.close();
  24. }
  25. else
  26. txtRemoteComputer.focus();
  27. }
  28. </Script>
  29. </head>
  30. <body onload="fnOnLoad()" class="sys-inlineform-bgcolor1" style="margin : 0px;">
  31. <table width="100%" height="100%" class="sys-font-body sys-color-body">
  32. <tr>
  33. <td ID="Caption" colspan=2 style="padding : 20px 0px 10px 20px;">
  34. &nbsp;
  35. </td>
  36. </tr>
  37. <tr>
  38. <td colspan=2 style="padding : 10px 0px 10px 20px;">
  39. <input id=txtRemoteComputer type="text" style="width : 100%;">
  40. </td>
  41. </tr>
  42. <tr>
  43. <td align="right" style="padding : 10px 0px 10px 20px;" style="width : 70%;">
  44. <input ID="BtnOpen" type="submit" name="btnOpen" onClick="fnOpen()" class="sys-font-body sys-color-body-disabled" style="width : 80px; height : 23px">
  45. </td>
  46. <td align="right" style="padding : 10px 0px 10px 10px;">
  47. <input ID="BtnCancel" type="reset" name="btnCancel" onClick="window.close()" class="sys-font-body sys-color-body-disabled" style="width : 80px; height : 23px">
  48. </td>
  49. </tr>
  50. </table>
  51. </body>
  52. </html>