Drop Down List

joradn

New member
Joined
Jun 25, 2003
Messages
1
I have a drop down list which is dynamically generated according to a specific field from (date) the database.When the user clicks on a field (e.g 12/3/2000) on the drop down list i want the textboxes down of the drop list to be informed and display for that specific date the other fields in database. I made the databindings and everything works fine.But when i choose another date in the drop down list the textboxes down have the same values when the initial date was chosen.How can i make the textboxes to change and have the correct information with the specific date i use?

p.s i used the autopostback choice in the dropdownlist but with no results
 
Please check your "Page_Load" event, because before system run your onChange events in dropdownlist, it will run the "Page_Load" event first.

This is the common mistake normally make by programmer, so I assume you face the same problem.... ;)
 
Back
Top