MVC Bookstore Project
843840Feb 28 2008 — edited Feb 29 2008I have been set a project where I have to create a bookstore using the MVC model. I have setup a simple Access Database and users are able to search for books and and submit reviews for the books that they have searched. However, when viewing the reviews, the user must be able to click on the reviews name (or UserID) and the system should show all reviews by that user. Currently I have a JSP page querying the database and the results being input into a table by a bean. Is it possible for the UserID string to be set as a parameter in the hyperlink, so that a 'request.getParameter()' function can be used to query the database to only show reviews by that user?