Hi,

I need a simple web page with following scrolling menu
that has following choices:

-My network nodes (by their ips)
-My network nodes (by their host names)
-My network nodes (by their locations)

for the 1st choice, the html page that will be displayed would be "ips.html"
for the 2nd choice, the html page would be "hosts.html"
for 3rd choice, the referred web page would be "locations.html"


The reason is that I need people of my network to be able to
access the list of our computers by ips, host names..etc

I have an idea how to create the scrolling menu, but I dont know
how to link the 3 choices of that menu to my 3 corresponding
html pages.
If that's not possible with HTML, please guide me with an easy alternative
using of course html and other simple scripting

Thanks for helping.

This should do it

<html>

<head>
<title>Network Nodes</title>
<meta name="generator" content="Namo WebEditor v4.0">
<script language="javascript">
function submitForm()
{
	//get selected page from listbox
	var page = document.forms[0].listby.value;
	//set it as the action page for this form
	document.forms[0].action = page
	//submit the form
	document.forms[0].submit()	 
}
</script>
</head>

<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
<form method="get" name="nodeselect">
<h1>List Network Nodes By</h1>
<select id="listby">
	<option value="ip.htm">-My network nodes (by their ips)</option>
	<option value="host.htm">-My network nodes (by their host names)t</option>
	<option value="location.htm">-My network nodes (by their locations)</option>
</select>
<input type="button" name="go" value="go" onClick="submitForm();">
</form>
</body>

</html>

Hi,

I need a simple web page with following scrolling menu
that has following choices:

-My network nodes (by their ips)
-My network nodes (by their host names)
-My network nodes (by their locations)

for the 1st choice, the html page that will be displayed would be "ips.html"
for the 2nd choice, the html page would be "hosts.html"
for 3rd choice, the referred web page would be "locations.html"


The reason is that I need people of my network to be able to
access the list of our computers by ips, host names..etc

I have an idea how to create the scrolling menu, but I dont know
how to link the 3 choices of that menu to my 3 corresponding
html pages.
If that's not possible with HTML, please guide me with an easy alternative
using of course html and other simple scripting

Thanks for helping.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.