• 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

Question on text validation

 
Ranch Hand
Posts: 219
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am relatively new to JAVA programming..so bear with my question if it is too simple for this forum...

Here is my question...
We are displaying a JSP page to users which lists the details as below..


The above output is a a result of querry if either the destination or County is mispelled in the source database. The intend is for the users to correct it and use the Save button which will commit it back t the database.

The logic for this is already there, the requirement now is for the users to correct the wrong data once instead of correcting it all the records manually. For example once they correct SouthCrolina in one column it should automatically populate the rest of SoutCrolina to the corrected values. Is there a way in Java script to easily achive this...

Any suggestions will be greatly appreciated..

Cheers,
Remi

[ January 31, 2006: Message edited by: meena latha ]
[ January 31, 2006: Message edited by: Bear Bibeault ]
 
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
JavaScript has no functionlaity to connect with the database/datasource to update the records so you need to do this on ther server.

Moving to the jsp forum

Eric
[ February 01, 2006: Message edited by: Eric Pascarello ]
 
reply
    Bookmark Topic Watch Topic
  • New Topic