- Home
·
- Active Server Pages
·
- This will allow you to know the previous month and next month using asp codes. i hope that this cod
This will allow you to know the previous month and next month using asp codes. i hope that this cod
This will allow you to know the previous month and next month using asp codes. i hope that this codes will help you lots in your codes in
Rate This will allow you to know the previous month and next month using asp codes. i hope that this cod
(2(2 Vote))
Function GetPrevMonth(iThisMonth,iThisYear)
GetPrevMonth=month(dateserial(iThisYear,iThisMonth,1)-1)
End Function
Function GetPrevMonthYear(iThisMonth,iThisYear)
GetPrevMonthYear=Year(dateserial(iThisYear,iThisMonth,1)-1)
End Function
Function GetNextMonth(iThisMonth,iThisYear)
GetNextMonth=month(dateserial(iThisYear,iThisMonth+1,1))
End Function
Function GetNextMonthYear(iThisMonth,iThisYear)
GetNextMonthYear=year(dateserial(iThisYear,iThisMonth+1,1))
End Function
%>
'use in DEMO
response.write GetPrevMonth(Month(Now), Year(Now)) & "/" & GetPrevMonthYear(1, 2002) & " " & GetNextMonth(Month(Now), Year(Now)) & "/" & GetNextMonthYear(Month(Now), Year(Now))
%>
This will allow you to know the previous month and next month using asp codes. i hope that this cod Comments
No comments yet — be the first to post one!
Post a Comment