home *** CD-ROM | disk | FTP | other *** search
- <html>
- <head>
- <STYLE>
- body{
- font-size : medium;
- }
- td {
- font-size : medium;
- }
- </STYLE>
- </head>
-
- <body bgcolor="silver" text="maroon">
-
- $MENUITEMS$
- <h1><div align="center">$WORKNODENAME$</div></h1><!--<form method="POST" action="http://">-->
- <br>
- <h1><div align="center">NIC info</div></h1><!--<form method="POST" action="http://">-->
- <form method="post" name="changeNicInfo" action="CALLBACKID-ConfigureStuff" onSubmit="return VerifyData();">
- <br>
- Enter the dictionary location of a stringlist of all nics:
- <input name="all_nics_location" value="" size=50 maxlength=80 >
- <br>
- Enter the dictionary location of a stringlist of tcpip adapters:
- <input name="tcpip_adapters_location" value="" size=50 maxlength=80 >
- <br>
- Enter the dictionary location of a stringlist of enabled adapters:
- <input name="enabled_adapters_location" value="" size=50 maxlength=80 >
- <br>
- Enter the dictionary location of a stringlist of functioning adapters:
- <input name="functioning_adapters_location" value="" size=50 maxlength=80 >
- <br>
- Enter the dictionary location of a stringlist of static adapters:
- <input name="static_adapters_location" value="" size=50 maxlength=80 >
- <br>
- Enter the dictionary location of a stringlist of adapters that are configured to use static DNS servers:
- <input name="static_dns_adapters_location" value="" size=50 maxlength=80 >
-
- <!--<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>-->
- <br>
- <P>$MENUITEMS$
- </P>
- <hr>
- <table>
- <tr><th align="right">
- <input type="hidden" name="saveState" value="0">
- <input type="hidden" name="WorkingDir">
- <input type="button" name="save" value="Save" style="HEIGHT: 28px; WIDTH: 72px" onClick="return SubmitForSave();">
- </form></th>
- <th align="left"><form method="post" name="cancel_config" action="CALLBACKID-CancelConfigure"><INPUT name=cancel type=submit value=Cancel style="HEIGHT: 28px; WIDTH: 72px">
- </form>
- </th></tr>
- </table>
- <hr>
-
- <BR>
-
- <A href="ConfigHelp.html#General" target=_blank>Click here for help</A>
- <P> </P>
- </body>
- </html>
-
- <SCRIPT LANGUAGE="JavaScript">
- var strAllNics="";
- var strTcpipBoundAdapters="";
- var strEnabledAdapters="";
- var strFunctioningAdapters="";
- var strStaticAdapters="";
- var strStaticDnsAdapters="";
-
- /*VARS*/
-
- /*ENDVARS*/
-
- document.forms[0].all_nics_location.value = strAllNics;
- document.forms[0].tcpip_adapters_location.value = strTcpipBoundAdapters;
- document.forms[0].enabled_adapters_location.value = strEnabledAdapters;
- document.forms[0].functioning_adapters_location.value = strFunctioningAdapters;
- document.forms[0].static_adapters_location.value = strStaticAdapters;
- document.forms[0].static_dns_adapters_location.value = strStaticDnsAdapters;
-
- </SCRIPT>
-
- <SCRIPT LANGUAGE="VBScript">
-
-
- Function SubmitForSave()
- document.forms(0).saveState.value = "1"
- if (VerifyData()) then
- if (document.forms(0).onSubmit()) then
- document.forms(0).submit()
- end if
- end if
- End Function
-
- Function VerifyData()
- dim strInstanceName
- dim strFilePath
- dim bReturn
- dim strWorkingDir
-
- bReturn = True
-
- VerifyData = bReturn
- end function
-
- </SCRIPT>