help
hi
i have a problem,
i'm trying to make a marks form in order the teacher can submit students marks, the problem is that i'm using many text fields in one form and those fields must have the same name so that i can read all the marks in array and moving to the databse...could u please tell me how to do that?
[330 byte] By [
loleetaa] at [2007-11-27 8:38:21]

# 1
When you create the text boxes dynamically have a unique name for each text box. In you action form, you will have private String[] marks = null;so when reading loop marks like,for(k=o;k<marks.length;k++) {.........logic goes here.....}>
skp71a at 2007-7-12 20:36:00 >
