Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
Durwood Edwards #1
Update Access with today's date
I am creating a form to allow the user to enter new records to an Access
database. I want to have a hidden field that enters the date of record
submission.
Would that be done by setting a value of today() for that named field?
Thanks
Durwood
Durwood Edwards Guest
-
Help with Today's Date Display
I have the following code: thisDate = new Date(); var isToday:String; isToday = thisDate.getDate().toString() + "/" +... -
Prepopulate DateField with Today's Date
Below is the code I currently have: import mx.controls.*; private function retrieveDate():void { requestDate.text += new Date(); } ... -
Filtering by today's date
Hi, I'm constructing an exhibitions list page....each entry has an opening date and closing date. The company wants (not sure why, but hey) all... -
Code to put today's date into MM-DD-YY format
I am new to cgi I would like to place a check box on my form. When it is checked & I run my custom Upload cgi script I would like this code to. ... -
Date update?
Does anyone know how to have the date on your home page update automatically? I can't find any code. Thanks in advance! --Nathan -
TiGGi #2
Re: Update Access with today's date
Here's couple of ways to do it:
1.
You can set value of hidden field as #DateFormat(Now(), "mmmm d, yyyy")#, you
can format date anyway you want.
2.
Create Auto Field in access with Date/Time format, so when new record is added
it will time/date stamp it.
Cheers
TiGGi Guest
-
Durwood Edwards #3
Re: Update Access with today's date
Thanks, I have already set format in Access for the date fileds,so should I
code it thuisly::
<input NAME="date_submission" TYPE="hidden" VALUE="Now()">
?
Thanks
Durwood
"TiGGi" <webforumsuser@macromedia.com> wrote in message
news:c9q3b2$mke$1@forums.macromedia.com...you> Here's couple of ways to do it:
> 1.
> You can set value of hidden field as #DateFormat(Now(), "mmmm d, yyyy")#,added> can format date anyway you want.
> 2.
> Create Auto Field in access with Date/Time format, so when new record is> it will time/date stamp it.
>
> Cheers
>
Durwood Edwards Guest
-
rob :: digitalburn #4
Re: Update Access with today's date
You don't need to do anything at the input end - the database knows what
time it is and can insert it itself :)
rob :: digitalburn Guest
-
Durwood Edwards #5
Re: Update Access with today's date
Well that makes it a lot more simple, now, does it not? Guess I should have
thought about that end of the deal.
Durwood
"rob :: digitalburn" <rob@digitalburn.net> wrote in message
news:c9qbq4$4r3$1@forums.macromedia.com...> You don't need to do anything at the input end - the database knows what
> time it is and can insert it itself :)
>
>
Durwood Edwards Guest
-
rob :: digitalburn #6
Re: Update Access with today's date
It does make things pretty easy... :)
Durwood Edwards wrote:> Well that makes it a lot more simple, now, does it not? Guess I
> should have thought about that end of the deal.
rob :: digitalburn Guest



Reply With Quote

