=?iso-8859-1?Q?Ra=FAl_E._Rivero?=
|
| Posted: 07/11/2001, 6:49 AM |
|
This is a multi-part message in MIME format.
------=_NextPart_000_019D_01C109F7.197A44A0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
Hi to all.
A while ago, I asked for a problem with the fields date. I'm working =
with ASP and INTERBASE.
My problem was that i need to input a field date with format DD/MM/YYYY, =
and when insert in database the format must be MM/DD/YYYY.=20
In forms events, i insert code to fix this,=20
before show=20
fldDateA =3D DAY(fldDateA)&"/"&MONTH(fldDateA)&"/"&YEAR(fldDateA)
before insert o update
fldDateA =3D MONTH(fldDateA)&"/"&DAY(fldDateA)&"/"&YEAR(fldDateA)
But i need to solve this problem in a SEARCH form, and i can't do it =
because not found an event that i can insert code to do this.
Is there some user using IB and ASP that has the same problem ?
or=20
Does some solution exist for this?
-------------------------------------------------------------------------=
-------
Ra=FAl E. Rivero
Montevideo - URUGUAY
------=_NextPart_000_019D_01C109F7.197A44A0
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 5.50.4522.1800" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT face=3DArial size=3D2>Hi to all.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>A while ago, I asked for a problem with =
the fields=20
date. I'm working with ASP and INTERBASE.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>My problem was that i need to input a =
field date=20
with format DD/MM/YYYY, and when insert in database the format must be=20
MM/DD/YYYY. </FONT></DIV>
<DIV><FONT face=3DArial size=3D2>In forms events, i insert code to fix =
this,=20
</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>before show </FONT></DIV>
<DIV><FONT face=3DArial size=3D2> fldDateA =3D=20
DAY(fldDateA)&"/"&MONTH(fldDateA)&"/"&YEAR(fldDateA)</FON=
T></DIV>
<DIV><FONT face=3DArial size=3D2>before insert o update</FONT></DIV>
<DIV><FONT face=3DArial size=3D2> fldDateA =3D=20
MONTH(fldDateA)&"/"&DAY(fldDateA)&"/"&YEAR(fldDateA)</FON=
T></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>But i need to solve this problem in a =
SEARCH form,=20
and i can't do it because not found an event that i can insert code to =
do=20
this.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Is there some user using IB and ASP =
that has=20
the same problem ?</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>or </FONT></DIV>
<DIV><FONT face=3DArial size=3D2>Does some solution exist for =
this?</FONT></DIV>
<DIV>
<HR>
<FONT color=3Dblue size=3D+1><B>Ra=FAl E. Rivero</B></FONT><BR><FONT=20
color=3Dblue>Montevideo - URUGUAY</FONT><BR></DIV></BODY></HTML>
------=_NextPart_000_019D_01C109F7.197A44A0--
|
|
|
 |
Alexey Alexapolsky
|
| Posted: 07/11/2001, 6:56 AM |
|
This is a multi-part message in MIME format.
------=_NextPart_000_00B0_01C10A28.0A337A80
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
I see no reason why you need to change this format right in
Search Form. Anyhow , if you want to you will simply need to
call Javascript validation function. PLace this function in Form's
Footer , and hook it on onsubmit event of this Form
--=20
Alex
Ra=FAl E. Rivero <rerivero@adinet.com.uy> wrote in message =
news:9ihlhn$5kq$1@news.codecharge.com...
Hi to all.
=20
A while ago, I asked for a problem with the fields date. I'm working =
with ASP and INTERBASE.
My problem was that i need to input a field date with format =
DD/MM/YYYY, and when insert in database the format must be MM/DD/YYYY.=20
In forms events, i insert code to fix this,=20
before show=20
fldDateA =3D DAY(fldDateA)&"/"&MONTH(fldDateA)&"/"&YEAR(fldDateA)
before insert o update
fldDateA =3D MONTH(fldDateA)&"/"&DAY(fldDateA)&"/"&YEAR(fldDateA)
=20
But i need to solve this problem in a SEARCH form, and i can't do it =
because not found an event that i can insert code to do this.
=20
Is there some user using IB and ASP that has the same problem ?
or=20
Does some solution exist for this?
-------------------------------------------------------------------------=
-----
Ra=FAl E. Rivero
Montevideo - URUGUAY
------=_NextPart_000_00B0_01C10A28.0A337A80
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 content=3D"text/html; charset=3Diso-8859-1" =
http-equiv=3DContent-Type>
<META content=3D"MSHTML 5.00.2919.6307" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT size=3D2>I see no reason why you need to change this format =
right=20
in</FONT></DIV>
<DIV><FONT size=3D2>Search Form. Anyhow , if you want to you will simply =
need=20
to</FONT></DIV>
<DIV><FONT size=3D2>call Javascript validation function. PLace this =
function in=20
Form's</FONT></DIV>
<DIV><FONT size=3D2>Footer , and hook it on onsubmit event of this=20
Form</FONT></DIV>
<DIV><BR>-- <BR>Alex<BR></DIV>
<DIV> </DIV>
<DIV>Ra=FAl E. Rivero <<A=20
href=3D"mailto:rerivero@adinet.com.uy">rerivero@adinet.com.uy</A>> =
wrote in=20
message <A=20
href=3D"news:9ihlhn$5kq$1@news.codecharge.com">news:9ihlhn$5kq$1@news.cod=
echarge.com</A>...</DIV>
<BLOCKQUOTE=20
style=3D"BORDER-LEFT: #000000 2px solid; MARGIN-LEFT: 5px; MARGIN-RIGHT: =
0px; PADDING-LEFT: 5px; PADDING-RIGHT: 0px">
<DIV><FONT face=3DArial size=3D2>Hi to all.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>A while ago, I asked for a problem =
with the=20
fields date. I'm working with ASP and INTERBASE.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>My problem was that i need to input a =
field date=20
with format DD/MM/YYYY, and when insert in database the format must be =
MM/DD/YYYY. </FONT></DIV>
<DIV><FONT face=3DArial size=3D2>In forms events, i insert code to fix =
this,=20
</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>before show </FONT></DIV>
<DIV><FONT face=3DArial size=3D2> fldDateA =3D=20
=
DAY(fldDateA)&"/"&MONTH(fldDateA)&"/"&YEAR(fldDateA)</FON=
T></DIV>
<DIV><FONT face=3DArial size=3D2>before insert o update</FONT></DIV>
<DIV><FONT face=3DArial size=3D2> fldDateA =3D=20
=
MONTH(fldDateA)&"/"&DAY(fldDateA)&"/"&YEAR(fldDateA)</FON=
T></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>But i need to solve this problem in a =
SEARCH=20
form, and i can't do it because not found an event that i can insert =
code to=20
do this.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Is there some user using IB and ASP =
that =20
has the same problem ?</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>or </FONT></DIV>
<DIV><FONT face=3DArial size=3D2>Does some solution exist for =
this?</FONT></DIV>
<DIV>
<HR>
<FONT color=3Dblue size=3D+1><B>Ra=FAl E. Rivero</B></FONT><BR><FONT=20
color=3Dblue>Montevideo - =
URUGUAY</FONT><BR></DIV></BLOCKQUOTE></BODY></HTML>
------=_NextPart_000_00B0_01C10A28.0A337A80--
|
|
|
 |
=?iso-8859-1?Q?Ra=FAl_E._Rivero?=
|
| Posted: 07/11/2001, 9:07 AM |
|
This is a multi-part message in MIME format.
------=_NextPart_000_0200_01C10A0A.6A615940
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
Thanks, Alex.
I understand that you say, but i don't have experience with Javascript.
Could you send me an example with this validation function?
I appreciate your contribution and it is welcome
"Alexey Alexapolsky" <alexa@codecharge.com> escribi=F3 en el mensaje =
news:9ihlu2$6jd$1@news.codecharge.com...
I see no reason why you need to change this format right in
Search Form. Anyhow , if you want to you will simply need to
call Javascript validation function. PLace this function in Form's
Footer , and hook it on onsubmit event of this Form
--=20
Alex
Ra=FAl E. Rivero <rerivero@adinet.com.uy> wrote in message =
news:9ihlhn$5kq$1@news.codecharge.com...
Hi to all.
A while ago, I asked for a problem with the fields date. I'm working =
with ASP and INTERBASE.
My problem was that i need to input a field date with format =
DD/MM/YYYY, and when insert in database the format must be MM/DD/YYYY.=20
In forms events, i insert code to fix this,=20
before show=20
fldDateA =3D =
DAY(fldDateA)&"/"&MONTH(fldDateA)&"/"&YEAR(fldDateA)
before insert o update
fldDateA =3D MONTH(fldDateA)&"/"&DAY(fldDateA)&"/"&YEAR(fldDateA)
But i need to solve this problem in a SEARCH form, and i can't do it =
because not found an event that i can insert code to do this.
Is there some user using IB and ASP that has the same problem ?
or=20
Does some solution exist for this?
-------------------------------------------------------------------------=
---
Ra=FAl E. Rivero
Montevideo - URUGUAY
------=_NextPart_000_0200_01C10A0A.6A615940
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 5.50.4522.1800" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT face=3DArial size=3D2>
<DIV><FONT face=3DArial size=3D2>Thanks, Alex.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>I understand that you say, but i don't =
have=20
experience with Javascript.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>Could you send me an example with =
this=20
validation function?</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>I appreciate your contribution and it =
is=20
welcome</FONT></DIV></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>"Alexey Alexapolsky" <<A=20
href=3D"mailto:alexa@codecharge.com">alexa@codecharge.com</A>> =
escribi=F3 en el=20
mensaje <A=20
=
href=3D"news:9ihlu2$6jd$1@news.codecharge.com">news:9ihlu2$6jd$1@news.cod=
echarge.com</A>...</DIV>
<DIV><FONT size=3D2>I see no reason why you need to change this format =
right=20
in</FONT></DIV>
<DIV><FONT size=3D2>Search Form. Anyhow , if you want to you will =
simply need=20
to</FONT></DIV>
<DIV><FONT size=3D2>call Javascript validation function. PLace this =
function in=20
Form's</FONT></DIV>
<DIV><FONT size=3D2>Footer , and hook it on onsubmit event of this=20
Form</FONT></DIV>
<DIV><BR>-- <BR>Alex<BR></DIV>
<DIV> </DIV>
<DIV>Ra=FAl E. Rivero <<A=20
href=3D"mailto:rerivero@adinet.com.uy">rerivero@adinet.com.uy</A>> =
wrote in=20
message <A=20
=
href=3D"news:9ihlhn$5kq$1@news.codecharge.com">news:9ihlhn$5kq$1@news.cod=
echarge.com</A>...</DIV>
<BLOCKQUOTE=20
style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; =
BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
<DIV><FONT face=3DArial size=3D2>Hi to all.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>A while ago, I asked for a problem =
with the=20
fields date. I'm working with ASP and INTERBASE.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>My problem was that i need to input =
a field=20
date with format DD/MM/YYYY, and when insert in database the format =
must be=20
MM/DD/YYYY. </FONT></DIV>
<DIV><FONT face=3DArial size=3D2>In forms events, i insert code to =
fix this,=20
</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>before show </FONT></DIV>
<DIV><FONT face=3DArial size=3D2> fldDateA =3D=20
=
DAY(fldDateA)&"/"&MONTH(fldDateA)&"/"&YEAR(fldDateA)</FON=
T></DIV>
<DIV><FONT face=3DArial size=3D2>before insert o update</FONT></DIV>
<DIV><FONT face=3DArial size=3D2> fldDateA =3D=20
=
MONTH(fldDateA)&"/"&DAY(fldDateA)&"/"&YEAR(fldDateA)</FON=
T></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>But i need to solve this problem in =
a SEARCH=20
form, and i can't do it because not found an event that i can insert =
code to=20
do this.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>Is there some user using IB and ASP =
that =20
has the same problem ?</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>or </FONT></DIV>
<DIV><FONT face=3DArial size=3D2>Does some solution exist for =
this?</FONT></DIV>
<DIV>
<HR>
<FONT color=3Dblue size=3D+1><B>Ra=FAl E. Rivero</B></FONT><BR><FONT =
color=3Dblue>Montevideo -=20
URUGUAY</FONT><BR></DIV></BLOCKQUOTE></BLOCKQUOTE></BODY></HTML>
------=_NextPart_000_0200_01C10A0A.6A615940--
|
|
|
 |
|