CodeCharge Studio
search Register Login  

Web Reports

Visually create Web Reports in PHP, ASP, .NET, Java, Perl and ColdFusion.
CodeCharge.com

YesSoftware Forums -> Archive -> CodeChargeStudio.Discussion

 Password validation

Print topic Send  topic

Author Message
LW Irving
Posted: 06/15/2002, 5:39 AM

This is a multi-part message in MIME format.

------=_NextPart_000_00FC_01C214BD.7C9B9260
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

In cc2 added code like

if getParam("member_password") <> getParam("password2") then

sRegisterErr =3D sRegisterErr & chr(13) & "Password and Confirm Password =
fields don't match"

end if



To check correct password input how do you do it in

CCS

Wayne


------=_NextPart_000_00FC_01C214BD.7C9B9260
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 6.00.2716.2200" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY>
<DIV><FONT face=3DArial size=3D2>In cc2 added code like</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV>
<P><FONT face=3DArial size=3D2>if getParam("member_password") <>=20
getParam("password2") then</FONT></P>
<P><FONT face=3DArial size=3D2>sRegisterErr =3D sRegisterErr & =
chr(13) &=20
"Password and Confirm Password fields don't match"</FONT></P>
<P><FONT face=3DArial size=3D2>end if</FONT></P>
<P><FONT face=3DArial size=3D2></FONT> </P>
<P><FONT face=3DArial size=3D2>To check correct password input how do =
you do=20
it  in</FONT></P>
<P><FONT face=3DArial size=3D2>CCS</FONT></P>
<P><FONT face=3DArial size=3D2>Wayne</FONT></P></DIV></BODY></HTML>

------=_NextPart_000_00FC_01C214BD.7C9B9260--
Harry Wheat
Posted: 06/15/2002, 10:42 AM

This is a multi-part message in MIME format.

------=_NextPart_000_0009_01C2146A.58DC0BA0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

Here is how I do it
''' Confirm password code added 5-13-02 under subroutine operation
if user_password.value <> confirm_password.value then
confirm_password.Errors.addError("Password and Confirm Password fields =
don't match")
Harry Wheat
"LW Irving" <lirving@coffs.com.au> wrote in message =
news:aefchn$qek$1@news.codecharge.com...
In cc2 added code like

if getParam("member_password") <> getParam("password2") then

sRegisterErr =3D sRegisterErr & chr(13) & "Password and Confirm =
Password fields don't match"

end if



To check correct password input how do you do it in

CCS

Wayne


------=_NextPart_000_0009_01C2146A.58DC0BA0
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 6.00.2600.0" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT face=3DArial size=3D2>Here is how I do it</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>''' Confirm password code added 5-13-02 =
under=20
subroutine operation<BR>  if user_password.value <>=20
confirm_password.value=20
then<BR>  confirm_password.Errors.addError("Password and =
Confirm=20
Password fields don't match")</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>Harry Wheat</FONT></DIV>
<BLOCKQUOTE dir=3Dltr=20
style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; =
BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
<DIV>"LW Irving" <<A=20
href=3D"mailto:lirving@coffs.com.au">lirving@coffs.com.au</A>> =
wrote in=20
message <A=20
=
href=3D"news:aefchn$qek$1@news.codecharge.com">news:aefchn$qek$1@news.cod=
echarge.com</A>...</DIV>
<DIV><FONT face=3DArial size=3D2>In cc2 added code like</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV>
<P><FONT face=3DArial size=3D2>if getParam("member_password") <> =

getParam("password2") then</FONT></P>
<P><FONT face=3DArial size=3D2>sRegisterErr =3D sRegisterErr & =
chr(13) &=20
"Password and Confirm Password fields don't match"</FONT></P>
<P><FONT face=3DArial size=3D2>end if</FONT></P>
<P><FONT face=3DArial size=3D2></FONT> </P>
<P><FONT face=3DArial size=3D2>To check correct password input how do =
you do=20
it  in</FONT></P>
<P><FONT face=3DArial size=3D2>CCS</FONT></P>
<P><FONT face=3DArial =
size=3D2>Wayne</FONT></P></DIV></BLOCKQUOTE></BODY></HTML>

------=_NextPart_000_0009_01C2146A.58DC0BA0--
LW Irving
Posted: 06/15/2002, 8:43 PM

This is a multi-part message in MIME format.

------=_NextPart_000_014B_01C2153B.C5CE98A0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

Wher did you add it
I tried the password2 field on validate
I have a form COFFS with fields password and password2 so I changed the =
code to this

if coffs.password.value <> coffs.password2.value then
password2.Errors.addError("Password and Confirm Password fields don't =
match")
end if

That works untill I mismatch the pass words then I get a non specific =
error page . If I refresh that page I get an empty record with error =
messages relating to the now empty fields.

Wayne
"Harry Wheat" <sales@ifixpcs.com> wrote in message =
news:aefu9o$qo$1@news.codecharge.com...
Here is how I do it
''' Confirm password code added 5-13-02 under subroutine operation
if user_password.value <> confirm_password.value then
confirm_password.Errors.addError("Password and Confirm Password =
fields don't match")
Harry Wheat
"LW Irving" <lirving@coffs.com.au> wrote in message =
news:aefchn$qek$1@news.codecharge.com...
In cc2 added code like

if getParam("member_password") <> getParam("password2") then

sRegisterErr =3D sRegisterErr & chr(13) & "Password and Confirm =
Password fields don't match"

end if



To check correct password input how do you do it in

CCS

Wayne


------=_NextPart_000_014B_01C2153B.C5CE98A0
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 6.00.2716.2200" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT face=3DArial size=3D2>Wher did you add it</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>I tried the password2 field  on=20
validate</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>I have a form COFFS with fields =
password and=20
password2 so I changed the code to this</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>if coffs.password.value <>=20
coffs.password2.value then<BR>password2.Errors.addError("Password and =
Confirm=20
Password fields don't match")<BR>end if</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>That works untill I mismatch the pass =
words then I=20
get a non specific error page . If I refresh that page I get an empty =
record=20
with error messages relating to the now empty fields.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Wayne</FONT></DIV>
<BLOCKQUOTE dir=3Dltr=20
style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; =
BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
<DIV>"Harry Wheat" <<A=20
href=3D"mailto:sales@ifixpcs.com">sales@ifixpcs.com</A>> wrote in =
message <A=20
=
href=3D"news:aefu9o$qo$1@news.codecharge.com">news:aefu9o$qo$1@news.codec=
harge.com</A>...</DIV>
<DIV><FONT face=3DArial size=3D2>Here is how I do it</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>''' Confirm password code added =
5-13-02 under=20
subroutine operation<BR>  if user_password.value <>=20
confirm_password.value=20
then<BR>  confirm_password.Errors.addError("Password and =
Confirm=20
Password fields don't match")</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>Harry Wheat</FONT></DIV>
<BLOCKQUOTE dir=3Dltr=20
style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; =
BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
<DIV>"LW Irving" <<A=20
href=3D"mailto:lirving@coffs.com.au">lirving@coffs.com.au</A>> =
wrote in=20
message <A=20
=
href=3D"news:aefchn$qek$1@news.codecharge.com">news:aefchn$qek$1@news.cod=
echarge.com</A>...</DIV>
<DIV><FONT face=3DArial size=3D2>In cc2 added code like</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV>
<P><FONT face=3DArial size=3D2>if getParam("member_password") =
<>=20
getParam("password2") then</FONT></P>
<P><FONT face=3DArial size=3D2>sRegisterErr =3D sRegisterErr & =
chr(13) &=20
"Password and Confirm Password fields don't match"</FONT></P>
<P><FONT face=3DArial size=3D2>end if</FONT></P>
<P><FONT face=3DArial size=3D2></FONT> </P>
<P><FONT face=3DArial size=3D2>To check correct password input how =
do you do=20
it  in</FONT></P>
<P><FONT face=3DArial size=3D2>CCS</FONT></P>
<P><FONT face=3DArial=20
size=3D2>Wayne</FONT></P></DIV></BLOCKQUOTE></BLOCKQUOTE></BODY></HTML>

------=_NextPart_000_014B_01C2153B.C5CE98A0--
Harry Wheat
Posted: 06/16/2002, 6:14 AM

This is a multi-part message in MIME format.

------=_NextPart_000_000B_01C2150E.2BD72280
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

You should be able to ad it in the operation method. That is where I =
added it. You may also be able to add it to the validate method.

"LW Irving" <lirving@coffs.com.au> wrote in message =
news:aeh1gk$91v$1@news.codecharge.com...
Wher did you add it
I tried the password2 field on validate
I have a form COFFS with fields password and password2 so I changed =
the code to this

if coffs.password.value <> coffs.password2.value then
password2.Errors.addError("Password and Confirm Password fields don't =
match")
end if

That works untill I mismatch the pass words then I get a non specific =
error page . If I refresh that page I get an empty record with error =
messages relating to the now empty fields.

Wayne
"Harry Wheat" <sales@ifixpcs.com> wrote in message =
news:aefu9o$qo$1@news.codecharge.com...
Here is how I do it
''' Confirm password code added 5-13-02 under subroutine operation
if user_password.value <> confirm_password.value then
confirm_password.Errors.addError("Password and Confirm Password =
fields don't match")
Harry Wheat
"LW Irving" <lirving@coffs.com.au> wrote in message =
news:aefchn$qek$1@news.codecharge.com...
In cc2 added code like

if getParam("member_password") <> getParam("password2") then

sRegisterErr =3D sRegisterErr & chr(13) & "Password and Confirm =
Password fields don't match"

end if



To check correct password input how do you do it in

CCS

Wayne


------=_NextPart_000_000B_01C2150E.2BD72280
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 6.00.2600.0" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT face=3DArial size=3D2>You should be able to ad it in the =
operation=20
method. That is where I added it. You may also be able to add it to the =
validate=20
method.</FONT></DIV>
<DIV> </DIV>
<BLOCKQUOTE dir=3Dltr=20
style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; =
BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
<DIV>"LW Irving" <<A=20
href=3D"mailto:lirving@coffs.com.au">lirving@coffs.com.au</A>> =
wrote in=20
message <A=20
=
href=3D"news:aeh1gk$91v$1@news.codecharge.com">news:aeh1gk$91v$1@news.cod=
echarge.com</A>...</DIV>
<DIV><FONT face=3DArial size=3D2>Wher did you add it</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>I tried the password2 field  on=20
validate</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>I have a form COFFS with fields =
password and=20
password2 so I changed the code to this</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>if coffs.password.value <>=20
coffs.password2.value then<BR>password2.Errors.addError("Password and =
Confirm=20
Password fields don't match")<BR>end if</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>That works untill I mismatch the pass =
words then=20
I get a non specific error page . If I refresh that page I get an =
empty record=20
with error messages relating to the now empty fields.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Wayne</FONT></DIV>
<BLOCKQUOTE dir=3Dltr=20
style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; =
BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
<DIV>"Harry Wheat" <<A=20
href=3D"mailto:sales@ifixpcs.com">sales@ifixpcs.com</A>> wrote in =
message=20
<A=20
=
href=3D"news:aefu9o$qo$1@news.codecharge.com">news:aefu9o$qo$1@news.codec=
harge.com</A>...</DIV>
<DIV><FONT face=3DArial size=3D2>Here is how I do it</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>''' Confirm password code added =
5-13-02 under=20
subroutine operation<BR>  if user_password.value <>=20
confirm_password.value=20
then<BR>  confirm_password.Errors.addError("Password and =
Confirm=20
Password fields don't match")</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>Harry Wheat</FONT></DIV>
<BLOCKQUOTE dir=3Dltr=20
style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; =
BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
<DIV>"LW Irving" <<A=20
href=3D"mailto:lirving@coffs.com.au">lirving@coffs.com.au</A>> =
wrote in=20
message <A=20
=
href=3D"news:aefchn$qek$1@news.codecharge.com">news:aefchn$qek$1@news.cod=
echarge.com</A>...</DIV>
<DIV><FONT face=3DArial size=3D2>In cc2 added code =
like</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV>
<P><FONT face=3DArial size=3D2>if getParam("member_password") =
<>=20
getParam("password2") then</FONT></P>
<P><FONT face=3DArial size=3D2>sRegisterErr =3D sRegisterErr & =
chr(13) &=20
"Password and Confirm Password fields don't match"</FONT></P>
<P><FONT face=3DArial size=3D2>end if</FONT></P>
<P><FONT face=3DArial size=3D2></FONT> </P>
<P><FONT face=3DArial size=3D2>To check correct password input how =
do you do=20
it  in</FONT></P>
<P><FONT face=3DArial size=3D2>CCS</FONT></P>
<P><FONT face=3DArial=20
size=3D2>Wayne</FONT></P></DIV></BLOCKQUOTE></BLOCKQUOTE></BLOCKQUOTE></B=
ODY></HTML>

------=_NextPart_000_000B_01C2150E.2BD72280--
LW Irving
Posted: 06/17/2002, 8:23 PM

This is a multi-part message in MIME format.

------=_NextPart_000_029B_01C216CB.56AFA900
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

I added a new form and included the code and it worked.=20
when I looked into it I could see that the new code was not being =
included when compiled. Ijust deleted the old form, it was easier then =
trying to fix it.
"Harry Wheat" <sales@ifixpcs.com> wrote in message =
news:aei30i$853$1@news.codecharge.com...
You should be able to ad it in the operation method. That is where I =
added it. You may also be able to add it to the validate method.

"LW Irving" <lirving@coffs.com.au> wrote in message =
news:aeh1gk$91v$1@news.codecharge.com...
Wher did you add it
I tried the password2 field on validate
I have a form COFFS with fields password and password2 so I changed =
the code to this

if coffs.password.value <> coffs.password2.value then
password2.Errors.addError("Password and Confirm Password fields =
don't match")
end if

That works untill I mismatch the pass words then I get a non =
specific error page . If I refresh that page I get an empty record with =
error messages relating to the now empty fields.

Wayne
"Harry Wheat" <sales@ifixpcs.com> wrote in message =
news:aefu9o$qo$1@news.codecharge.com...
Here is how I do it
''' Confirm password code added 5-13-02 under subroutine operation
if user_password.value <> confirm_password.value then
confirm_password.Errors.addError("Password and Confirm Password =
fields don't match")
Harry Wheat
"LW Irving" <lirving@coffs.com.au> wrote in message =
news:aefchn$qek$1@news.codecharge.com...
In cc2 added code like

if getParam("member_password") <> getParam("password2") then

sRegisterErr =3D sRegisterErr & chr(13) & "Password and Confirm =
Password fields don't match"

end if



To check correct password input how do you do it in

CCS

Wayne


------=_NextPart_000_029B_01C216CB.56AFA900
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 6.00.2716.2200" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT face=3DArial size=3D2>I added a new form and included the =
code and it=20
worked. </FONT></DIV>
<DIV><FONT face=3DArial size=3D2>when I looked into it I could see that =
the new code=20
was not being included when compiled. Ijust deleted the old form, it was =
easier=20
then trying to fix it.</FONT></DIV>
<BLOCKQUOTE dir=3Dltr=20
style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; =
BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
<DIV>"Harry Wheat" <<A=20
href=3D"mailto:sales@ifixpcs.com">sales@ifixpcs.com</A>> wrote in =
message <A=20
=
href=3D"news:aei30i$853$1@news.codecharge.com">news:aei30i$853$1@news.cod=
echarge.com</A>...</DIV>
<DIV><FONT face=3DArial size=3D2>You should be able to ad it in the =
operation=20
method. That is where I added it. You may also be able to add it to =
the=20
validate method.</FONT></DIV>
<DIV> </DIV>
<BLOCKQUOTE dir=3Dltr=20
style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; =
BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
<DIV>"LW Irving" <<A=20
href=3D"mailto:lirving@coffs.com.au">lirving@coffs.com.au</A>> =
wrote in=20
message <A=20
=
href=3D"news:aeh1gk$91v$1@news.codecharge.com">news:aeh1gk$91v$1@news.cod=
echarge.com</A>...</DIV>
<DIV><FONT face=3DArial size=3D2>Wher did you add it</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>I tried the password2 field =
 on=20
validate</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>I have a form COFFS with =
fields password=20
and password2 so I changed the code to this</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>if coffs.password.value <>=20
coffs.password2.value then<BR>password2.Errors.addError("Password =
and=20
Confirm Password fields don't match")<BR>end if</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>That works untill I mismatch the =
pass words=20
then I get a non specific error page . If I refresh that page I get =
an empty=20
record with error messages relating to the now empty =
fields.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Wayne</FONT></DIV>
<BLOCKQUOTE dir=3Dltr=20
style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; =
BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
<DIV>"Harry Wheat" <<A=20
href=3D"mailto:sales@ifixpcs.com">sales@ifixpcs.com</A>> wrote =
in message=20
<A=20
=
href=3D"news:aefu9o$qo$1@news.codecharge.com">news:aefu9o$qo$1@news.codec=
harge.com</A>...</DIV>
<DIV><FONT face=3DArial size=3D2>Here is how I do it</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>''' Confirm password code added =
5-13-02 under=20
subroutine operation<BR>  if user_password.value =
<>=20
confirm_password.value=20
then<BR>  confirm_password.Errors.addError("Password and =
Confirm=20
Password fields don't match")</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>Harry Wheat</FONT></DIV>
<BLOCKQUOTE dir=3Dltr=20
style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; =
BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
<DIV>"LW Irving" <<A=20
=
href=3D"mailto:lirving@coffs.com.au">lirving@coffs.com.au</A>> wrote =
in=20
message <A=20
=
href=3D"news:aefchn$qek$1@news.codecharge.com">news:aefchn$qek$1@news.cod=
echarge.com</A>...</DIV>
<DIV><FONT face=3DArial size=3D2>In cc2 added code =
like</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV>
<P><FONT face=3DArial size=3D2>if getParam("member_password") =
<>=20
getParam("password2") then</FONT></P>
<P><FONT face=3DArial size=3D2>sRegisterErr =3D sRegisterErr =
& chr(13)=20
& "Password and Confirm Password fields don't =
match"</FONT></P>
<P><FONT face=3DArial size=3D2>end if</FONT></P>
<P><FONT face=3DArial size=3D2></FONT> </P>
<P><FONT face=3DArial size=3D2>To check correct password input =
how do you do=20
it  in</FONT></P>
<P><FONT face=3DArial size=3D2>CCS</FONT></P>
<P><FONT face=3DArial=20
=
size=3D2>Wayne</FONT></P></DIV></BLOCKQUOTE></BLOCKQUOTE></BLOCKQUOTE></B=
LOCKQUOTE></BODY></HTML>

------=_NextPart_000_029B_01C216CB.56AFA900--

   


These are Community Forums for users to exchange information.
If you would like to obtain technical product help please visit http://support.yessoftware.com.

PHP Reports

Visually create Web Reports in PHP, ASP, .NET, Java, Perl and ColdFusion.
CodeCharge.com

Home   |    Search   |    Members   |    Register   |    Login


Powered by UltraApps Forum created with CodeCharge Studio
Copyright © 2003-2004 by UltraApps.com  and YesSoftware, Inc.