Hi
1.I have a
jsp page which uses jstl sql tags.
2.I have 3 column table id, name, city. id will be drop down and name, city are text boxes.
3.When I load the page all ids will be shown as drop down based on select query.
4.When I select one value from id drop down, the text boxes for name and city should show corresponding values for the id selected.
5.After that user may change values of name and city.
6.After all processing when user hit submit button, the data modified in text boxes should be updated to the table.
Here is the code for my jsp page:
The critical part of it is when I select a value from id drop down, it has show values for name and city in text boxes and values can be editable.
Give me some example links or give some code snippets.
Thanks in Advance
SP Nam