Java using Servlet and XHTML

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • lsprtt

    Java using Servlet and XHTML

    I'm trying to create this program and I need some help
    It includes using JAVA, XHTML and Servlet


    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.


    Then Modify the Web application of so that the initial request to the
    servlet returns a Web page of topics in the FAQ database. Then, the
    user can hyperlink to another servlet that returns only the frequently
    asked questions for a particular topic.
  • Jim Dabell

    #2
    Re: Java using Servlet and XHTML

    lsprtt wrote:
    [color=blue]
    > I'm trying to create this program and I need some help
    > It includes using JAVA, XHTML and Servlet[/color]
    [snip]

    If you have a specific question relating to HTML, then fire away, you'll
    find plenty of people willing to help you. But just dumping a homework
    assignment on the newsgroup isn't going to get you much help at all.

    <URL:http://www.catb.org/~esr/faqs/smart-questions.html# homework>

    The whole document's worth a read, by the way.

    --
    Jim Dabell

    Comment

    Working...