display all dates within months
Web Development
3
Posts
2
Posters
0
Views
1
Watching
-
My need to display all dates of 1 or 2 months previous from current dates means if current date is 01-06-2008 then all date between 01-05-2008 to 01-06-2008. How can i do it.
sanjeev
-
My need to display all dates of 1 or 2 months previous from current dates means if current date is 01-06-2008 then all date between 01-05-2008 to 01-06-2008. How can i do it.
sanjeev
-
A calender control? Its easy enough to generate the dates, how you want ot display them is up to you.
Bob Ashfield Consultants Ltd
thanks for i got it working by this code
<%For dt = DateAdd("m",-1,Date())To Date()
Response.Write dt & "<br/>" & vbNewLine
Next %>regards jha
sanjeev