| | |
How to create a web page with scrolling menus to specific entries
Please support our HTML and CSS advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
![]() |
•
•
Join Date: Mar 2005
Posts: 5
Reputation:
Solved Threads: 0
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.
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 and CSS Syntax (Toggle Plain Text)
<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>
•
•
•
•
Originally Posted by aromes
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.
![]() |
Similar Threads
- Can I control the Screen resolution in web page? (JavaScript / DHTML / AJAX)
- Opening a form on a site's web page (Python)
- How to create a web page? (PHP)
- Change Web Page Font Size on the Fly (Windows tips 'n' tweaks)
- How can I create Frames in my web page? (Site Layout and Usability)
- "Error message 580 when debugging a web page" (ASP.NET)
- unable to load windows update web page (Viruses, Spyware and other Nasties)
- How to create/design a web page? (Site Layout and Usability)
Other Threads in the HTML and CSS Forum
- Previous Thread: Help with printing mulitple documents in js...!
- Next Thread: Transforming XML with XSLT
| Thread Tools | Search this Thread |
appointments asp background backgroundcolor beta browser bug calendar cart cgi code codeinjection corporateidentity css design development displayimageinsteadofflash dreamweaver emailmarketing epilepsy explorer firefox flash form format google griefers hackers hitcounter hover html ide ie7 ie8 iframe image images internet internetexplorer intranet iphone javascript jpeg layout macbook maps marketshare microsoft mozilla multimedia navigationbars news offshoreoutsourcingcompany opacity opera optimization pnginie6 positioning problem scroll seo shopping studio swf swf. textcolor timecolor titletags url urlseparatedwords visual visualization web webdevelopment webform website windows7






