• 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

Servlets and HTML: rather confused, jdbc assignment

 
Ranch Hand
Posts: 424
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What is a good way of programming HTML-code?
I need to print an edit and a delete button, each in its own 'form'!
The HTML to be printed is identical behalve of 'edit' and 'delete' (and the servlet to be called).
Print out the info directely is more or less
twice 6 lines of code.
Bilding one String and then
using Str replace facility is another possibility.
Using a method (with parameters) is a third one.
Mixture of all this is a fourth one.
 
Sheriff
Posts: 9109
12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Having common code in two places is not usually a good idea.
 
reply
    Bookmark Topic Watch Topic
  • New Topic