Re: about logic tag
Pramod (et al) Please refer to the "Guidelines for Struts Mailing List" for further posts http://struts.apache.org/mail.html Martin Gainty -Original message- From: Andrew Hill [EMAIL PROTECTED] Date: Mon, 13 Dec 2004 06:15:33 -0500 To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re: about logic tag > Are there stairs in your house? > > Pramod wrote: > > > I have done the steps but i didn't get results > > > > - > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > > > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > This message and its contents are intended for receiver. Information contained within is protected by Law. If you have received this message in error please delete it and notify [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
Re: how to save last 5 searches in the cookie?
Personally I dislike cookies and dont allow any on my box...way too many virus attacks this year. In fact if the site Im visiting only works with cookies I write to the webmaster and ask them why dont they use Session?? I would strongly recommend saving your User preferences etc back up to the Server via "Session" attributes My 2 cents, Martin -Original message- From: "Yadav, Ganesh" [EMAIL PROTECTED] Date: Mon, 13 Dec 2004 13:00:21 -0500 To: [EMAIL PROTECTED] Subject: how to save last 5 searches in the cookie? > Hello All. > > I have a requirement to save last 5 searches in the cookie. > > In other words, saving last 5 set of "search param- value" pairs in > cookie. > > Retrieve them and show these 5 searches in Combo box. So whenever user > select one, he should have his search screen params filled up from the > cookie values stored. > > > > Can some one guide me on this as to how I can get this done? > > Any code e.g. will really help. > > > > Thanks in advance > > > > G > > > > > > > > > > > > This message and its contents are intended for receiver. Information contained within is protected by Law. If you have received this message in error please delete it and notify [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
Re: Cannot find ActionMappings or ActionFormBeans collection
Sunny: If you have any errors in your Jsp pages It is always helpful to make sure the JSP pages compile without errors thru Eclipse, JDeveloper or JBuilder Also make sure your package spec for ArticleAction is 'articles' of course Make the changes to struts-config.xml below.. Please keep us informed, Martin Gainty -Original message- From: Sunny [EMAIL PROTECTED] Date: Mon, 13 Dec 2004 02:08:02 -0500 To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re: Cannot find ActionMappings or ActionFormBeans collection > Do following changes: > > your struts-config: > > > >path="/Article" > type="articles.ArticleAction" > scope="request" > validate="true" > parameter="/Template.jsp"> > > > >path="/ArticleUpdate" > type="articles.ArticleAction" > name="articleForm" > scope="request" > validate="true" > input="/Template.jsp"> > > > > > > > > your Template.jsp > > . > > > > uma.k wrote: > > >Hi Bush, > >Its confusing me. How do I call an Action without the Template.jsp form > >being submitted? My Action and ActionForm are i web-inf/classes/articles > >folder. My Template.jsp will take that information from the user and send it > >to the respective jsp based on the "execute" method. > > > >If I am wrong please correct me. > > > >Thanks > >Uma > > > > > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > This message and its contents are intended for receiver. If you have received this message in error please delete it and notify [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]