> I am displaying the following Database records in a Table of my JSP
> page.
[quoted text clipped - 4 lines]
> 2 John Rizzo
> 3 Todd Steven
Good, so you can select data from the database.
> 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.
Before the row you can select, you can place radio buttons with as value
a representation of the primary key of the record (the customer number
for example).
Then, when the page is submitted, you know the record to edit.
Selecting the data to edit is something you already can: it's similar to
what you already have.
Editing the information is almost trivial, once you know two things:
1. What record to update
2. How to update a record
For point 1, add a hidden form field that contains a representation of the
primary key of the record being edited.
For point 2, read up on update statements and how to set SQL parameters.
That is, read the relevant part of any SQL manual, and the API for
java.sql.Statement and java.sql.PreparedStatement.

Signature
Oscar Kind http://home.hccnet.nl/okind/
Software Developer for contact information, see website
PGP Key fingerprint: 91F3 6C72 F465 5E98 C246 61D9 2C32 8E24 097B B4E2