Forum: JSP Jul 10th, 2005 |
| Replies: 6 Views: 3,031 There is at least one very obvious advantage: Jacascript can be turned off on the client side, meaning that validation won't happen at at all. Always write applications that doesn't require... |
Forum: PHP Jul 10th, 2005 |
| Replies: 7 Views: 2,141 GET methods also makes it easier for someone to bookmark a page. And your users don't get the annoying "This page contains POST data (...) when they try to use the back and forward buttons in their... |
Forum: JSP Jul 10th, 2005 |
| Replies: 4 Views: 3,857 No idea, I never tried. I manage my database connections with Hibernate (persistence framework), and put only view code in the jsp's. |
Forum: JSP Jul 10th, 2005 |
| Replies: 4 Views: 3,857 You don't access databases through JSP. JSP comes paired up with servlets written in Java. The servlets (and underlying classes) does all the heavy work, while the JSPs just view the results. |
Forum: JSP Jul 10th, 2005 |
| Replies: 2 Views: 3,964 Thanks for your reply. I already found out what was wrong, though - I had jasper-runtime.jar in my lib-catalogue, and that caused, for some reason, the jsp pages to show up blank. Weird, but at least... |
Forum: JSP Jun 27th, 2005 |
| Replies: 2 Views: 3,752 Marty Hall has some excellent slides on jsf here: http://courses.coreservlets.com/Course-Materials/jsf.html
I suggest you check those out. |
Forum: JSP Jun 20th, 2005 |
| Replies: 6 Views: 3,031 I think it sounds good. Just try to get the input checking away from the servlet and into the java class you're talking about. Java classes (beans) should have that responsibility, and servlet should... |
Forum: XML, XSLT and XPATH Jun 20th, 2005 |
| Replies: 1 Views: 3,068 I'm working with an web presentation application now that uses XML for several other things than the ones you mentioned: Saving content of presentation, defining patterns for how the presentations... |
Forum: JSP Jun 20th, 2005 |
| Replies: 2 Views: 3,964 Hi,
This is one of those dumb newbie questions, I'm afraid. I'm trying to learn Servlets/JSP by making a small application that allows you to register yourself as a user. I'm using the latest... |