Forum Moderators: open

Message Too Old, No Replies

I need a line of code that updates text on a web page

         

Arturo99

4:59 pm on Dec 11, 2018 (gmt 0)

5+ Year Member Top Contributors Of The Month



I need a line of code that updates text on a web page as per the day of the week
it has to sit inside and asp driven website
Any help appreciated

Art

lucy24

6:48 pm on Dec 11, 2018 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Whose day of the week? The server's, or the user's?

Arturo99

7:10 pm on Dec 11, 2018 (gmt 0)

5+ Year Member Top Contributors Of The Month



the servers

brotherhood of LAN

7:29 pm on Dec 11, 2018 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



[w3schools.com...]

I haven't used ASP in a long time but it seems this is it

<!DOCTYPE html>
<html>
<body>

Today's date is: <%response.write(date())%>.
<br>
The server's local time is: <%response.write(time())%>.

</body>
</html>

Arturo99

8:24 pm on Dec 11, 2018 (gmt 0)

5+ Year Member Top Contributors Of The Month



thanks