tarnovo

Greenhorn
+ Follow
since Sep 27, 2000
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by tarnovo

Hello Rosen!
Where are you from?
See you
21 years ago
I write a report servlets (employee report)
Name SSN Birthdate
Mary 12345789 12/05/1970
... etc
I like to write some delete servlet with checkbox(delete) ,for every row in the table this is to choice for example first, or third employee record to delete.
checkbox Name SSN Birthdate
x Mary --- ------- for example I click the checkbox in this row because I like to delete this Name,SSN,Birthdate.
It's possible somebody to help me to write some code for this problem.
This is for practice , because I study servlets.
Thanks.
23 years ago
I like to see the following:
checkbox Name SSN Birthdate
checkbox Name SSN Birthdate
checkbox Name SSN Birthdate
I write servlets for this and HTML and in the servlets make a loop but how to make the loop for checkbox, because I like to come out together with the other elements this checkbox is for delete.
Could somebody help me?
Thanks,
23 years ago
I want some explanation for this problem:
I write a servlets who reads from a file where write the employe report(name,SSn,birthdate), I make a table name,SSN, birthdate(3 rows).
I read this file with: FileReader file = new FileReader("c:\s_test\data.txt");
file.readLine(name1.substring(0,20).trim());
file.readLine(SSN1.substring(0,10).trim());
file.readLine(birthdate.sustring(0,10).trim());
I have to write while loop but I don't know how.
Could somebody tell me how?
Thanks!
Jany

------------------
23 years ago