RE: multi-step user registration ?

2006-01-17 Thread David G. Friedman
esday, January 17, 2006 12:23 PM To: Struts Users Mailing List Subject: Re: multi-step user registration ? On 1/17/06, Harish Pathak <[EMAIL PROTECTED]> wrote: > Hi all, > > How can I handle multiple forms or multi-step user registration (multi step > form) with Struts ? > I wan

Re: multi-step user registration ?

2006-01-17 Thread Michael Jouravlev
On 1/17/06, Harish Pathak <[EMAIL PROTECTED]> wrote: > Hi all, > > How can I handle multiple forms or multi-step user registration (multi step > form) with Struts ? > I want to create 4 forms and it should show the data of all the forms when > user click on the Submit

multi-step user registration ?

2006-01-17 Thread Harish Pathak
Hi all, How can I handle multiple forms or multi-step user registration (multi step form) with Struts ? I want to create 4 forms and it should show the data of all the forms when user click on the Submit button on the last form . Please give me the idea...how to do that? Please

User Registration

2005-06-15 Thread Anand Vijay
Hi I have a link in my application for user registration form . It has combo box in the form that need to be populated from database. Say : Form action path is register.do and form name is register_form What should be the link and how we have to do mapping in struts-config.xml Regards Vijay

User Registration

2005-06-14 Thread Anand Vijay
Hi I have a link in my application for user registration form . It has combo box in the form that need to be populated from database. Say : Form action path is register.do and form name is register_form What should be the link and how we have to do mapping in struts-config.xml Regards Vijay

Re: Help on Action implementing thread for checking user registration thru email?

2004-08-19 Thread struts Dude
ginal Message - From: "Daniel Perry" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Friday, August 20, 2004 5:15 AM Subject: RE: Help on Action implementing thread for checking user registration thru email? > I previously posted

RE: Help on Action implementing thread for checking user registration thru email?

2004-08-19 Thread Dhaliwal, Pritpal (HQP)
chael Finger [mailto:[EMAIL PROTECTED] Sent: Thursday, August 19, 2004 10:29 AM To: Struts Users Mailing List Subject: RE: Help on Action implementing thread for checking user registration thru email? I second the below - when you pull the user info from the database check the timestamp and in

RE: Help on Action implementing thread for checking user registration thru email?

2004-08-19 Thread Michael Finger
Mike -Original Message- From: Daniel Perry [mailto:[EMAIL PROTECTED] Sent: Thursday, August 19, 2004 10:15 AM To: Struts Users Mailing List Subject: RE: Help on Action implementing thread for checking user registration thru email? To do what you require, instead of scheduling a job for each entry

RE: Help on Action implementing thread for checking user registration thru email?

2004-08-19 Thread Paul-J Woodward
t: RE: Help on Action implementing thread for checking user registration thru email? I previously posted a message on how i did this as a struts plugin, so i've reposted below. To do what you require, instead of scheduling a job for each entry after 24hrs, i would include a timestamp in the data

RE: Help on Action implementing thread for checking user registration thru email?

2004-08-19 Thread Daniel Perry
I previously posted a message on how i did this as a struts plugin, so i've reposted below. To do what you require, instead of scheduling a job for each entry after 24hrs, i would include a timestamp in the database, then say every hour, check for expired entries and delete them.

Re: Help on Action implementing thread for checking user registration thru email?

2004-08-19 Thread Erik Weber
Barrows [mailto:[EMAIL PROTECTED] Sent: Thursday, August 19, 2004 9:16 AM To: Struts Users Mailing List Subject: RE: Help on Action implementing thread for checking user registration thru email? -Original Message- From: struts Dude [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 18

RE: Help on Action implementing thread for checking user registration thru email?

2004-08-19 Thread Dhaliwal, Pritpal (HQP)
: RE: Help on Action implementing thread for checking user registration thru email? > -Original Message- > From: struts Dude [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 9:14 PM > To: Struts Users Mailing List > Subject: Help on Action implementing thread fo

RE: Help on Action implementing thread for checking user registration thru email?

2004-08-19 Thread Jim Barrows
> -Original Message- > From: struts Dude [mailto:[EMAIL PROTECTED] > Sent: Wednesday, August 18, 2004 9:14 PM > To: Struts Users Mailing List > Subject: Help on Action implementing thread for checking user > registration thru email? > > > > Hi, >

Re[2]: Help on Action implementing thread for checking user registration thru email?

2004-08-18 Thread Pavlikus
;> >> >> -- >> Best regards, >> Pavlikusmailto:[EMAIL PROTECTED] >> sD> Can you be a bit more specific? Do you mean to use DB to set expired time sD> for each record to be 24 hr, if user not check back with Action, DB sD> will drop t

RE: Help on Action implementing thread for checking user registration thru email?

2004-08-18 Thread David Friedman
Sent: Thursday, August 19, 2004 12:14 AM To: Struts Users Mailing List Subject: Help on Action implementing thread for checking user registration thru email? Hi, I am going to write an app that allow user to register in a JSP page, press submit, then user redirected to a new page telling user

Re: Help on Action implementing thread for checking user registration thru email?

2004-08-18 Thread struts Dude
- Original Message - From: "Pavlikus" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Thursday, August 19, 2004 4:30 PM Subject: Re: Help on Action implementing thread for checking user registration thru email? > W

Re: Help on Action implementing thread for checking user registration thru email?

2004-08-18 Thread Pavlikus
hin 24 hr from email. The link would have parameter sD> that can tell an Action who is visiting. sD> Problem: sD> Now, how do I write an Action that will check back latter after 24 Hrs sD> for an user?? Using thread in Action??? Dunno if that's a good idea. sD> The way I

Help on Action implementing thread for checking user registration thru email?

2004-08-18 Thread struts Dude
er after 24 Hrs for an user?? Using thread in Action??? Dunno if that's a good idea. The way I am going to do this is, have an Action implement thread, for evey user registration, set wake up (check back) interval after 24 hr. Every user visiting this Action will wake up Action and do validation