Print Page | Close Window

date and image code

Printed From: Web Wiz Forums
Category: General Discussion
Forum Name: Classic ASP Discussion
Forum Description: Discussion on Active Server Pages (Classic ASP).
URL: https://forums.webwiz.net/forum_posts.asp?TID=25667
Printed Date: 29 March 2026 at 4:24pm
Software Version: Web Wiz Forums 12.08 - https://www.webwizforums.com


Topic: date and image code
Posted By: WebCity
Subject: date and image code
Date Posted: 29 April 2008 at 9:03pm
hello I hope someone can help me.  I am trying to find a way to have a page updat a image by date.

using todays date 4/29/08

if date < 5/1/08 then nothing happens
if date = or > 5/1/08 then display image ../images/33.gif

Thanks



Replies:
Posted By: jamie.townsend
Date Posted: 30 April 2008 at 2:15pm
how about something like this:

<%
' todays date
TodaysDate = date

' show different image depending on the date today
select case TodaysDate
   
    ' date
    case "30/04/2008"

        ' show image 2
        response.write("<img src='image2.gif'")
   
    ' date
    case "01/05/2008"

        ' show image 3
        response.write("<img src='image3.gif'")
   
    ' no date match, show default image
    case else

        ' default image
        response.write("<img src='image1.gif'")

' end showing todays image
end select
%>



Posted By: jamie.townsend
Date Posted: 30 April 2008 at 2:17pm
I have just noticed your from the US so please modify my code to be in the correct date format for your country. I belive its month/day/year is it not ?


Posted By: jamie.townsend
Date Posted: 02 May 2008 at 4:04pm
did you manage to get it working ?


Posted By: WebCity
Date Posted: 18 May 2008 at 3:50am
Originally posted by jamie.townsend jamie.townsend wrote:

did you manage to get it working ?
 
Yes, it did work, Thanks Sorry it took me so long to get back to you.  I been busy with spring school, baseball and boy scout events.


Posted By: jamie.townsend
Date Posted: 18 May 2008 at 12:43pm
cool, no problem.  Just glad it worked.



Print Page | Close Window

Forum Software by Web Wiz Forums® version 12.08 - https://www.webwizforums.com
Copyright ©2001-2026 Web Wiz Ltd. - https://www.webwiz.net