오늘은
2011-07-02 21:03:00

툴바와 DB 연결

사이트 레이아웃 마무리

플레이어 같이하기

인코딩 확인해보기

▼ more
play
2011-07-02 20:17:23

play

▼ more
우리의 어두운 시기를 함께 해줬던
2011-07-02 11:44:51

... ..

▼ more
filetype asp
2011-07-02 09:52:51

strFileType = lcase(Right(strFileName, 4))

' Feel Free to Add Your Own Content-Types Here

Select Case strFileType

Case ".asf"

ContentType = "video/x-ms-asf"

Case ".avi"

ContentType = "video/avi"

Case ".doc"

ContentType = "application/msword"

Case ".zip"

ContentType = "application/zip"

Case ".xls"

ContentType = "application/vnd.ms-excel"

Case ".gif"

ContentType = "image/gif"

Case ".jpg", "jpeg"

ContentType = "image/jpeg"

Case ".wav"

ContentType = "audio/wav"

Case ".mp3"

ContentType = "audio/mpeg3"

Case ".mpg", "mpeg"

ContentType = "video/mpeg"

Case ".rtf"

ContentType = "application/rtf"

Case ".htm", "html"

ContentType = "text/html"

Case ".asp"

ContentType = "text/asp"

Case Else

'Handle All Other Files

ContentType = "application/octet-stream"

End Select

▼ more