home *** CD-ROM | disk | FTP | other *** search
/ Adephia Powerlink / AdephiaPowerlink-030102.iso / pc / Install / WorkFlow / Bin / SysInfoText.dll / GUI_INFO / 3027 < prev   
Encoding:
Text File  |  2002-11-15  |  3.3 KB  |  107 lines

  1. <html>
  2. <head>
  3. <STYLE>
  4. body{
  5.     font-size : medium;
  6.     }
  7. td    {
  8.     font-size : medium;
  9.     }
  10. </STYLE>
  11. </head>
  12.  
  13. <body bgcolor="silver" text="maroon">
  14.  
  15. $MENUITEMS$
  16. <h1><div align="center">$WORKNODENAME$</div></h1><!--<form method="POST"  action="http://">-->
  17. <br>
  18. <h1><div align="center">NIC info</div></h1><!--<form method="POST"  action="http://">-->
  19. <form method="post" name="changeNicInfo" action="CALLBACKID-ConfigureStuff" onSubmit="return VerifyData();">
  20. <br>
  21. Enter the dictionary location of a stringlist of all nics:
  22. <input name="all_nics_location" value="" size=50 maxlength=80 >
  23. <br>
  24. Enter the dictionary location of a stringlist of tcpip adapters:
  25. <input name="tcpip_adapters_location" value="" size=50 maxlength=80 >
  26. <br>
  27. Enter the dictionary location of a stringlist of enabled adapters:
  28. <input name="enabled_adapters_location" value="" size=50 maxlength=80 >
  29. <br>
  30. Enter the dictionary location of a stringlist of functioning adapters:
  31. <input name="functioning_adapters_location" value="" size=50 maxlength=80 >
  32. <br>
  33. Enter the dictionary location of a stringlist of static adapters:
  34. <input name="static_adapters_location" value="" size=50 maxlength=80 >
  35. <br>
  36. Enter the dictionary location of a stringlist of adapters that are configured to use static DNS servers:
  37. <input name="static_dns_adapters_location" value="" size=50 maxlength=80 >
  38.  
  39. <!--<p>Path to help file: <input name="fileInputText" style="HEIGHT: 22px; WIDTH: 373px"><input type="button" name="browseButton" value="Browse..." onClick="BrowseClick();"><input type="file" name="HELP_FILE_PATH" style="HEIGHT: 22px; WIDTH: 80px" style='display: none;'></p>-->
  40. <br>
  41. <P>$MENUITEMS$
  42. </P>
  43. <hr>
  44. <table>
  45. <tr><th align="right">
  46. <input type="hidden" name="saveState" value="0">
  47. <input type="hidden" name="WorkingDir">
  48. <input type="button" name="save" value="Save" style="HEIGHT: 28px; WIDTH: 72px" onClick="return SubmitForSave();"> 
  49. </form></th>
  50. <th align="left"><form method="post" name="cancel_config" action="CALLBACKID-CancelConfigure"><INPUT name=cancel type=submit value=Cancel style="HEIGHT: 28px; WIDTH: 72px">
  51. </form>
  52. </th></tr>
  53. </table>
  54. <hr>
  55.  
  56. <BR>
  57.  
  58. <A href="ConfigHelp.html#General" target=_blank>Click here for help</A>
  59. <P> </P>
  60. </body>
  61. </html>
  62.  
  63. <SCRIPT LANGUAGE="JavaScript">
  64. var strAllNics="";
  65. var strTcpipBoundAdapters="";
  66. var strEnabledAdapters="";
  67. var strFunctioningAdapters="";
  68. var strStaticAdapters="";
  69. var strStaticDnsAdapters="";
  70.  
  71. /*VARS*/
  72.  
  73. /*ENDVARS*/
  74.  
  75. document.forms[0].all_nics_location.value = strAllNics;
  76. document.forms[0].tcpip_adapters_location.value = strTcpipBoundAdapters;
  77. document.forms[0].enabled_adapters_location.value = strEnabledAdapters;
  78. document.forms[0].functioning_adapters_location.value = strFunctioningAdapters;
  79. document.forms[0].static_adapters_location.value = strStaticAdapters;
  80. document.forms[0].static_dns_adapters_location.value = strStaticDnsAdapters;
  81.  
  82. </SCRIPT>
  83.  
  84. <SCRIPT LANGUAGE="VBScript">
  85.  
  86.  
  87. Function SubmitForSave()
  88.     document.forms(0).saveState.value = "1"
  89.     if (VerifyData()) then
  90.         if (document.forms(0).onSubmit()) then
  91.             document.forms(0).submit()
  92.         end if
  93.     end if
  94. End Function
  95.  
  96. Function VerifyData()
  97.     dim strInstanceName
  98.     dim strFilePath
  99.     dim bReturn
  100.     dim strWorkingDir
  101.  
  102.     bReturn = True
  103.     
  104.     VerifyData = bReturn
  105. end function
  106.  
  107. </SCRIPT>