RE: To validate password & confirmpassword fields

2006-08-11 Thread Kalra, Ashwani

He wants to use javascript validation generated from struts
 

-Original Message-
From: Li [mailto:[EMAIL PROTECTED] 
Sent: Friday, August 11, 2006 3:23 PM
To: Struts Users Mailing List
Subject: Re: To validate password & confirmpassword fields

sorry, my mistakes,

er you can create validate method and compare them there. then in your
struts-config.xml, make sure the action that control the form submission
has input page. in order to avoid validation check at first time. you
can define an action that only forward to your password input page. the
the action that handles the form submission will be different from this
actiona which is bundle with your action form.

:P

On 8/11/06, Rauf Khan <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Iam doing validation for registration page where password & 
> confirmpassword fields should have the same password if not an alert 
> msg through javascript(validator framework) should be shown. I have 
> validated rest of the fields through validator framework only.
>
> Khan
>
>
> On 8/11/06, Li <[EMAIL PROTECTED]> wrote:
> >
> > seems you are using your own authentication module, one thing you 
> > can do it using javascript, or you can use form authentication, and 
> > define login page and login error page, so if your userid or 
> > password is not valid, login error page will showed up.
> >
> > Wish it helps
> >
> > Regards
> >
> > On 8/11/06, Rauf Khan <[EMAIL PROTECTED]> wrote:
> > > Hi,
> > >
> > >I trying to validate the fields using Validator Framework at 
> > > client
> > side,
> > > Iam not able to validate the password & confirmpassword fields 
> > > inorder
> > to
> > > show an alert msg if password & confirmpassword fields are not 
> > > same. Can
> > i
> > > know how to handle this case.
> > >
> > >   > > property="confirmpassword"/>
> > >
> > > Thanks in advance.
> > >
> > > Regards
> > > Khan
> > >
> > >
> >
> >
> > --
> > When we invent time, we invent death.
> >
> > 
> > - To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
>
>


--
When we invent time, we invent death.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


This message contains information that may be privileged or confidential and is 
the property of the Capgemini Group. It is intended only for the person to whom 
it is addressed. If you are not the intended recipient,  you are not authorized 
to read, print, retain, copy, disseminate,  distribute, or use this message or 
any part thereof. If you receive this  message in error, please notify the 
sender immediately and delete all  copies of this message.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: To validate password & confirmpassword fields

2006-08-11 Thread Li

sorry, my mistakes,

er you can create validate method and compare them there. then in your
struts-config.xml, make sure the action that control the form
submission has input page. in order to avoid validation check at first
time. you can define an action that only forward to your password
input page. the the action that handles the form submission will be
different from this actiona which is bundle with your action form.

:P

On 8/11/06, Rauf Khan <[EMAIL PROTECTED]> wrote:

Hi,

Iam doing validation for registration page where password &
confirmpassword fields should have the same password if not an alert msg
through javascript(validator framework) should be shown. I have validated
rest of the fields through validator framework only.

Khan


On 8/11/06, Li <[EMAIL PROTECTED]> wrote:
>
> seems you are using your own authentication module, one thing you can
> do it using javascript, or you can use form authentication, and define
> login page and login error page, so if your userid or password is not
> valid, login error page will showed up.
>
> Wish it helps
>
> Regards
>
> On 8/11/06, Rauf Khan <[EMAIL PROTECTED]> wrote:
> > Hi,
> >
> >I trying to validate the fields using Validator Framework at client
> side,
> > Iam not able to validate the password & confirmpassword fields inorder
> to
> > show an alert msg if password & confirmpassword fields are not same. Can
> i
> > know how to handle this case.
> >
> > 
> > 
> >
> > Thanks in advance.
> >
> > Regards
> > Khan
> >
> >
>
>
> --
> When we invent time, we invent death.
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>





--
When we invent time, we invent death.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: To validate password & confirmpassword fields

2006-08-11 Thread Kalra, Ashwani

In struts 1.2 you can easily useas mentioned in other
post.

/Ashwani

-Original Message-
From: Rauf Khan [mailto:[EMAIL PROTECTED] 
Sent: Friday, August 11, 2006 3:17 PM
To: Struts Users Mailing List
Subject: Re: To validate password & confirmpassword fields

Hi,

Iam doing validation for registration page where password &
confirmpassword fields should have the same password if not an alert msg
through javascript(validator framework) should be shown. I have
validated rest of the fields through validator framework only.

Khan


On 8/11/06, Li <[EMAIL PROTECTED]> wrote:
>
> seems you are using your own authentication module, one thing you can 
> do it using javascript, or you can use form authentication, and define

> login page and login error page, so if your userid or password is not 
> valid, login error page will showed up.
>
> Wish it helps
>
> Regards
>
> On 8/11/06, Rauf Khan <[EMAIL PROTECTED]> wrote:
> > Hi,
> >
> >I trying to validate the fields using Validator Framework at 
> > client
> side,
> > Iam not able to validate the password & confirmpassword fields 
> > inorder
> to
> > show an alert msg if password & confirmpassword fields are not same.

> > Can
> i
> > know how to handle this case.
> >
> >   > property="confirmpassword"/>
> >
> > Thanks in advance.
> >
> > Regards
> > Khan
> >
> >
>
>
> --
> When we invent time, we invent death.
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

This message contains information that may be privileged or confidential and is 
the property of the Capgemini Group. It is intended only for the person to whom 
it is addressed. If you are not the intended recipient,  you are not authorized 
to read, print, retain, copy, disseminate,  distribute, or use this message or 
any part thereof. If you receive this  message in error, please notify the 
sender immediately and delete all  copies of this message.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: To validate password & confirmpassword fields

2006-08-11 Thread Rauf Khan

Hi,

   Iam doing validation for registration page where password &
confirmpassword fields should have the same password if not an alert msg
through javascript(validator framework) should be shown. I have validated
rest of the fields through validator framework only.

Khan


On 8/11/06, Li <[EMAIL PROTECTED]> wrote:


seems you are using your own authentication module, one thing you can
do it using javascript, or you can use form authentication, and define
login page and login error page, so if your userid or password is not
valid, login error page will showed up.

Wish it helps

Regards

On 8/11/06, Rauf Khan <[EMAIL PROTECTED]> wrote:
> Hi,
>
>I trying to validate the fields using Validator Framework at client
side,
> Iam not able to validate the password & confirmpassword fields inorder
to
> show an alert msg if password & confirmpassword fields are not same. Can
i
> know how to handle this case.
>
> 
> 
>
> Thanks in advance.
>
> Regards
> Khan
>
>


--
When we invent time, we invent death.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




Re: To validate password & confirmpassword fields

2006-08-11 Thread Bart Busschots
This is a very common thing to do and should be done with the validWhen 
validation as described on the Validotor page of the Struts User Guide 
(http://struts.apache.org/1.x/userGuide/building_view.html#validator).


Below is the validation I use on a change password form as an example:


  
   
  
  
   
   
   minlength6
  
  
   
   
test
(*this* == passwordNew)
   
  
 

HTH,

Bart.

Rauf Khan wrote:

Hi,

  I trying to validate the fields using Validator Framework at client 
side,

Iam not able to validate the password & confirmpassword fields inorder to
show an alert msg if password & confirmpassword fields are not same. 
Can i

know how to handle this case.




Thanks in advance.

Regards
Khan




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: To validate password & confirmpassword fields

2006-08-11 Thread Li

seems you are using your own authentication module, one thing you can
do it using javascript, or you can use form authentication, and define
login page and login error page, so if your userid or password is not
valid, login error page will showed up.

Wish it helps

Regards

On 8/11/06, Rauf Khan <[EMAIL PROTECTED]> wrote:

Hi,

   I trying to validate the fields using Validator Framework at client side,
Iam not able to validate the password & confirmpassword fields inorder to
show an alert msg if password & confirmpassword fields are not same. Can i
know how to handle this case.




Thanks in advance.

Regards
Khan





--
When we invent time, we invent death.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]