Click here to Skip to main content
15,886,693 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
sir i'm having 4 radio buttons called pallet number,box number, bundle number, si number, id i select pallet radio button it has to display all pallet numbers in database just i need how to navigate the particular page if i clicked radio button.
Posted

1 solution

If I understand correctly your setup is as follows:
4 radio buttons, as soon as you click one of them a different page needs to load.
You can simple do this client side, with JavaScript or jQuery, depending on your requirements.
Give your radio button an Id, and add an event handler for the 'changed' state, like this:
http://stackoverflow.com/a/8997289[^]
You can then modify the JavaScript Window.Location property to let the user issue another page.
Optionally you can also supply parameters to the page (QueryStrings / URL rerouting) depending on your requirements.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900