Click here to Skip to main content
15,891,828 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i want to use dropdown select value in query-string in same page.. Using selected 'name' want to fetch details of that person from database.. without using Ajax...
Posted
Comments
Sandeep Mewara 28-Jul-10 3:56am    
So, you say what all you want, Try it! Where is the issue?

1 solution

You simply post the form with the dropdown like this:

XML
<form name="form1" method="post">
<select name="select" class="tabletxt"  onChange="this.form1.submit()">
<option selected>Select info here </option>
<option>Program</option>
<option>Registering</option>
</select>
</form>



Good luck!
 
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