Welcome to the Ranch!
Scotty McCoy wrote:I DON'T want to use a Servlet, whether it'll be easier or not, I just want complete JSP pages.
Bad, bad, bad, bad, and did I say
bad idea. Why the insistence on using the wrong tools for the job?
JSPs are meant for the view portion of the web app. Servlets should be used as the controllers. Using JSPs for anything other than view is like, well:
I also see that you are using obsolete and outdated
Java scriptlets in your pages. JSP 2 threw those out with the bathwater in 2002. Twelve years ago.
You should be using the JSTL and EL in any JSP page written after 2002.
I'm assuming that you're not a newcomer to JSP, but I'd recommend reading
this article anyways. But certainly read
this article to understand how to properly construct a modern Java web app.