0
Time Fields help
LEGEND
,
/t5/dreamweaver-discussions/time-fields-help/td-p/835222
Jun 02, 2006
Jun 02, 2006
Copy link to clipboard
Copied
Hi all,
I have a time field that starts at 00:00 through to 23:59 problem is the
list is too long. I would like to have 2 dropdown fields HOURS & MINUTES
that join together when the form is submitted and enters the time into the
SQL db.
Any help would be appreciated.
Regards
Simon
I have a time field that starts at 00:00 through to 23:59 problem is the
list is too long. I would like to have 2 dropdown fields HOURS & MINUTES
that join together when the form is submitted and enters the time into the
SQL db.
Any help would be appreciated.
Regards
Simon
TOPICS
Server side applications
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Newsgroup_User
AUTHOR
LEGEND
,
/t5/dreamweaver-discussions/time-fields-help/m-p/835223#M113410
Jun 02, 2006
Jun 02, 2006
Copy link to clipboard
Copied
If you're using ASP:
<%Request.Form("lstHours")%>:<%Request.Form("lstMinutes")%>
This just does a quick concatenation. I tend to throw this into a hidden
field and then use that value to do the insert.
Pat.
"Simon Gare" <sg@simongare.com> wrote in message
news:e5p117$54t$1@forums.macromedia.com...
> Hi all,
>
> I have a time field that starts at 00:00 through to 23:59 problem is the
> list is too long. I would like to have 2 dropdown fields HOURS & MINUTES
> that join together when the form is submitted and enters the time into the
> SQL db.
>
> Any help would be appreciated.
>
> Regards
> Simon
>
>
<%Request.Form("lstHours")%>:<%Request.Form("lstMinutes")%>
This just does a quick concatenation. I tend to throw this into a hidden
field and then use that value to do the insert.
Pat.
"Simon Gare" <sg@simongare.com> wrote in message
news:e5p117$54t$1@forums.macromedia.com...
> Hi all,
>
> I have a time field that starts at 00:00 through to 23:59 problem is the
> list is too long. I would like to have 2 dropdown fields HOURS & MINUTES
> that join together when the form is submitted and enters the time into the
> SQL db.
>
> Any help would be appreciated.
>
> Regards
> Simon
>
>
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Newsgroup_User
AUTHOR
LEGEND
,
LATEST
/t5/dreamweaver-discussions/time-fields-help/m-p/835224#M113412
Jun 02, 2006
Jun 02, 2006
Copy link to clipboard
Copied
Thanks Pat
Regards
Simon
"PAT SHAW" <pat@nomail.com> wrote in message
news:e5p69a$bbo$1@forums.macromedia.com...
> If you're using ASP:
>
> <%Request.Form("lstHours")%>:<%Request.Form("lstMinutes")%>
>
> This just does a quick concatenation. I tend to throw this into a hidden
> field and then use that value to do the insert.
>
> Pat.
>
>
> "Simon Gare" <sg@simongare.com> wrote in message
> news:e5p117$54t$1@forums.macromedia.com...
> > Hi all,
> >
> > I have a time field that starts at 00:00 through to 23:59 problem is the
> > list is too long. I would like to have 2 dropdown fields HOURS & MINUTES
> > that join together when the form is submitted and enters the time into
the
> > SQL db.
> >
> > Any help would be appreciated.
> >
> > Regards
> > Simon
> >
> >
>
>
Regards
Simon
"PAT SHAW" <pat@nomail.com> wrote in message
news:e5p69a$bbo$1@forums.macromedia.com...
> If you're using ASP:
>
> <%Request.Form("lstHours")%>:<%Request.Form("lstMinutes")%>
>
> This just does a quick concatenation. I tend to throw this into a hidden
> field and then use that value to do the insert.
>
> Pat.
>
>
> "Simon Gare" <sg@simongare.com> wrote in message
> news:e5p117$54t$1@forums.macromedia.com...
> > Hi all,
> >
> > I have a time field that starts at 00:00 through to 23:59 problem is the
> > list is too long. I would like to have 2 dropdown fields HOURS & MINUTES
> > that join together when the form is submitted and enters the time into
the
> > SQL db.
> >
> > Any help would be appreciated.
> >
> > Regards
> > Simon
> >
> >
>
>
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

