Hello All,
I am displaying the following Database records in a Table of my JSP
page.
Customer No. FirstName LastName
1 Tim Hertal
2 John Rizzo
3 Todd Steven
I want to select anyone of the record and perform Edit operation. When
I press Edit button, a new screen open up and take all values of the
selected row. Where I can make changes and send the data back to
database.
I am wondering if someone can help me or sends Java and JSP code or
provides any link where I can find information.
Thank you.
Mades - 20 Sep 2004 14:27 GMT
collect the values of selected row.Using the String Concatenation
merge all value using some seperator.Pass that String to next
page,Using String Tokenizer split the Values and put the values in
corresponding Controls.After Updation,update the table.
> Hello All,
>
[quoted text clipped - 15 lines]
>
> Thank you.