yo
-
You need two pages, right ? One full of radio buttons and one full of links for the button you pressed. What's not clear is, how are the links stored ? In a database ? XML ? hard coded ? A radio button list page is pretty trivial, and then each button needs, on click, to divert to the second page. The two ways to handle this are a cross page postback, or putting a variable on the URL, so that the second page knows which URLs to show. Again, it's not clear from the question where they come from.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
You need two pages, right ? One full of radio buttons and one full of links for the button you pressed. What's not clear is, how are the links stored ? In a database ? XML ? hard coded ? A radio button list page is pretty trivial, and then each button needs, on click, to divert to the second page. The two ways to handle this are a cross page postback, or putting a variable on the URL, so that the second page knows which URLs to show. Again, it's not clear from the question where they come from.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
OK, so create one page with the radio buttons and have it redirect to the other page, and the other page would take a parameter, telling it which group of hard coded links to display.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )