Using Java Servlets and XHTML

L

lsprtt

Does anyone know how to do this program using Java Servlets with XHTML


Create a Web application for dynamic FAQs. The application should
obtain the information to create the dynamic FAQ Web page from a
database that consists of a Topics table and an FAQ table. The Topics
table should have two fields—a unique integer ID for each topic
(topicID) and a name for each topic (topicName). The FAQ table should
have three fields—the topicID (a foreign key), a string representing
the question (question) and the answer to the question (answer). When
the servlet is invoked, it should read the data from the database and
return a dynamically created Web page containing each question and
answer, sorted by topic.
 
C

Christophe Vanfleteren

lsprtt said:
Does anyone know how to do this program using Java Servlets with XHTML


Create a Web application for dynamic FAQs. The application should
obtain the information to create the dynamic FAQ Web page from a
database that consists of a Topics table and an FAQ table. The Topics
table should have two fields—a unique integer ID for each topic
(topicID) and a name for each topic (topicName). The FAQ table should
have three fields—the topicID (a foreign key), a string representing
the question (question) and the answer to the question (answer). When
the servlet is invoked, it should read the data from the database and
return a dynamically created Web page containing each question and
answer, sorted by topic.

Do your own homework.
It really isn't that hard you know, and you might learn something.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,754
Messages
2,569,521
Members
44,995
Latest member
PinupduzSap

Latest Threads

Top