마지막 달의 날자를 구하는 함수 입니다..
Function getTotalMonthDay( strMonth, strYear)
Dim result = 0
select case strMonth
case "1" ,"3", "5", "7", "8", "10", "12"
result = 31
case "4", "6", "9", "11"
result = 30
case "2"
if ((strYear mod 4) = 0 and (strYear mod 100) <> 0) or (strYear mod 400) = 0 then
result = 29
else
result = 28
end if
end select
getTotalMonthDay= result
End Function
반응형
'개발 > ASP.NET, ASP' 카테고리의 다른 글
Linq To Xml을 사용해 보자 (0) | 2009.03.26 |
---|---|
visual studio 2005 sp1 설치 실패 해결법 "이 제품에 대한 설치 원본을 사용할 수 없습니다." (0) | 2009.03.10 |
ASP.NET 페이지 수명 주기 개요 (0) | 2008.08.21 |
자바스크립트로 QueryString 값 받기 (0) | 2008.06.27 |
에러처리 Failed to execute request because the App-Domain could not be created. Error: 0x80131902 (0) | 2008.02.02 |