Re: JSP vs Servlets...

2000-12-21 Thread Ted Husted
On 12/20/2000 at 5:39 PM Rui Oliveira wrote: can someone tell me which one is best: JSP or [regular] Servlets? All JSPs are actually servlets, and the JSP file is really just another way to Java source. The container (or one of its helpers) compiles them into servlets as needed, and then

JSP vs Servlets...

2000-12-20 Thread Rui Oliveira
Hello, can someone tell me which one is best: JSP or Servlets? Is there a reason (beside implementatio reasons) to choose one instead of the other? Thx in advance Rui

Re: JSP vs Servlets...

2000-12-20 Thread Edilmar Alves
I think JSP + Servlet combination is the ideal to really implement a three-tier system like: 1) User interface = HTML+JSP 2) Business logic = Servlet 3) Database = someone I had used only Servlets and my code was strange, with HTML code into Java servlet code, and now I have had migrating all

Re: JSP vs Servlets...

2000-12-20 Thread Steve Ruby
(or some other template language) in conjunction with servlets for layout and small time code.. So you can't really compare JSP vs servlets, they should be used together depending on the application.

Re: JSP vs Servlets...

2000-12-20 Thread Neal Dawson - personal account
JSP's are easier to write. You can also have your Web nerds design the pages; then you can plug in your jsp tags. pretty cool. N -- Neal Dawson Office of the Legislative Auditor [EMAIL PROTECTED] --

RE: JSP vs Servlets...

2000-12-20 Thread Kitching Simon
ber 20, 2000 6:40 PM To: [EMAIL PROTECTED] Subject: JSP vs Servlets... Hello, can someone tell me which one is best: JSP or Servlets? Is there a reason (beside implementatio reasons) to choose one instead of the other? Thx in advance Rui

RE: JSP vs Servlets...

2000-12-20 Thread John de la Garza
opinion... -Original Message- From: Rui Oliveira [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 20, 2000 9:40 AM To: [EMAIL PROTECTED] Subject: JSP vs Servlets... Hello, can someone tell me which one is best: JSP or Servlets? Is there a reason (beside implementatio reasons