Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Date if before, don't show, if after display

LEGEND ,
Apr 07, 2008 Apr 07, 2008
I have a table with dates in it but I don't want to display items if
they fall before the date and not if after, they do appear?

ASP, VBSCRIPT
TOPICS
Server side applications
241
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Apr 07, 2008 Apr 07, 2008
Let me restate>>>
If they fall before the date, they don't appear, they DO appear if they
are after a certain date - ASP, VBSCRIPT
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Apr 07, 2008 Apr 07, 2008
Art wrote:
> I have a table with dates in it but I don't want to display items if
> they fall before the date and not if after, they do appear?
>
> ASP, VBSCRIPT

Dates are always a PITA :)

<% If DateString > GetDate() Then %>
Do stuff
<% End if %>

Steve
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Apr 07, 2008 Apr 07, 2008
LATEST
Thanks -
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines