• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

set values in a table from other

 
Ranch Hand
Posts: 214
Netbeans IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I have a jsp page in this page I have one static text field for current date and below this in dynamic table having one text box
and two radio buttons for present and absent. The main work of this page is that I am retriving staff_name from a table and want to be insert every perticular text field value(Staff name) in second table with their status absent OR present

so my question is how it is possible.. because I am facing an a problem the only one(first text field value) adding in the table ..

please give me some suggestion.............

Thanks!
 
Rancher
Posts: 377
Android Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hey,

Without the code of how you are adding things to the table, there isn't really much we can say. Could you post it (remember and use the code tags).
Sean
 
Rd Dari
Ranch Hand
Posts: 214
Netbeans IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This is my first jsp page ............




This is second jsp.........







This is bean where I am inserting values ...



One thing staff_manager bean is also use in jsp for one field where i am getting staff_names

database is here....





please reply................
 
Sean Clark
Rancher
Posts: 377
Android Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hey, I think in your JSP you are starting a <tr> outside the loop therefore only the first row has a <tr> and </tr>. View the source and you should be able to see this.

Also it has to be said, in this day and age java code in JSP's is a big NO. For a start not having the java code there tidies up the HTML in your page in which case you would have been able to find your problem much easier as you can indent it as it should be!

Also doing this allows you to consolidate all your database access so you don't have to set up connections all over the place! There are so many good reasons for doing it, to not is a mistake.

Sean
 
Rd Dari
Ranch Hand
Posts: 214
Netbeans IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I ave cheked but not working..........
 
Sean Clark
Rancher
Posts: 377
Android Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
"It's not working" does not help, please can you post the source as it appears in your browser...

Sean
 
Rd Dari
Ranch Hand
Posts: 214
Netbeans IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
How I can send You my browser page .....................
Please tell me.........
 
Sean Clark
Rancher
Posts: 377
Android Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In IE, go to your page click View -> Source and copy that.

Sean
 
Rd Dari
Ranch Hand
Posts: 214
Netbeans IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This is source.............

 
Sean Clark
Rancher
Posts: 377
Android Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Ok, I can't see any problems with that... but like I said I think it is because you are putting your <tr> start tag before getting the data from the database rather than on each row.

Sean
 
Rd Dari
Ranch Hand
Posts: 214
Netbeans IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I think all <tr> and <td>s are set at own place....................

please suggest me.........
 
Sean Clark
Rancher
Posts: 377
Android Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

look at your code, on line 7 you create the row before you start looping so only 1 row is ever created.

Sean
 
Rd Dari
Ranch Hand
Posts: 214
Netbeans IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Sean ,

Thanks for reply but my code as it is as you posted but only first value is inserting in the table I could not understanding the problem...
please read all latest code I am posting and suggest me what should in this.......


Thanks!!!



This is bean file....



This is jsp page...




This is insertion page of jsp page






and these are tables.....



 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic