RE: Calling JSP directly.

2004-10-04 Thread Shabada, Gnaneshwer
Never mind. Got it. I used fields with those tags and it works, :) Thanks anyways guys. -Original Message- From: Shabada, Gnaneshwer [mailto:[EMAIL PROTECTED] Sent: Monday, October 04, 2004 5:37 PM To: 'Struts Users Mailing List' Subject: RE: Calling JSP directly. OK. I

RE: Calling JSP directly.

2004-10-04 Thread Shabada, Gnaneshwer
hey be alwatys input tags.. Let me know if you need more info. Thanks for your help Gnan -Original Message- From: Shabada, Gnaneshwer [mailto:[EMAIL PROTECTED] Sent: Monday, October 04, 2004 4:41 PM To: 'Struts Users Mailing List' Subject: RE: Calling JSP directly.

RE: Calling JSP directly.

2004-10-04 Thread Shabada, Gnaneshwer
rank W. Zammetti [mailto:[EMAIL PROTECTED] Sent: Monday, October 04, 2004 2:23 PM To: Struts Users Mailing List Subject: Re: Calling JSP directly. You CAN call JSPs directly, but it's not generally thought of as a good idea. If you need to display a JSP and don't really need any func

Re: Calling JSP directly.

2004-10-04 Thread Frank W. Zammetti
You CAN call JSPs directly, but it's not generally thought of as a good idea. If you need to display a JSP and don't really need any functionality behind it, you can use a ForwardAction, which is a kind of Action specifically designed to just forward to a JSP. This keeps your control layer in

Re: Calling JSP directly.

2004-10-04 Thread Jeff Beal
You *can* call a JSP directly in this way, but it is not generally considered to be the best approach. It's better to always link to an Action class. Even if you use the Struts ForwardAction (http://struts.apache.org/api/org/apache/struts/actions/ForwardAction.html), which doesn't do anything