본문 바로가기

Language(언어)57

ASP CSng 함수 CSng 함수설명Single 하위 형식의 Variant로 변환된 식을 반환합니다.구문CSng(expression) expression 인수는 임의의 유효한 식입니다.참고대개 데이터 형식 변환 함수를 사용하여 코드를 작성하면 연산 결과가 기본 데이터 형식이 아닌 특정 데이터 형식으로 나타나는 것을 볼 수 있습니다.예를 들어 일반적으로 통화나 정수 산술 연산을 할 경우에 CDbl 또는 CSng를 사용하면 단정밀도나 배정밀도 산술 연산을 하게 됩니다.CSng 함수를 사용하면 다른 형식의 데이터를 국제적으로 통용되는 Single 하위 형식으로 변환합니다.예를 들어 천 단위 구분 기호처럼 서로 다른 자릿수 구분 기호는 컴퓨터의 로케일 설정에 따라 적절하게 인식됩니다.expression이 Single 하위 형식의 .. 2013. 12. 6.
ASP CLng 함수 CLng 함수설명Long 하위 형식의 Variant로 변환된 식을 반환합니다.구문CLng(expression) 식 인수는 유효한 식이면 됩니다.설정대개 하위 형식의 변환 함수를 사용하여 코드를 작성하면 연산 결과가 기본 데이터 형식이 아닌 특정 데이터 형식으로 나타나는 것을 볼 수 있습니다. 예를 들어, 통화, 단정밀도, 배정밀도 산술 연산을 할 경우에 CInt 또는 CLng 함수를 사용하면 정수 산술 연산을 하게 됩니다.CLng 함수를 사용하면 다른 형식의 데이터를 국제적으로 통용되는 Long 하위 형식으로 변환합니다. 예를 들어, 천 단위 구분 기호처럼 서로 다른 자릿수 구분 기호는 컴퓨터의 로케일 설정에 따라 적절하게 인식됩니다.식이 Long 하위 형식의 허용 범위를 넘으면 오류가 발생합니다.주의 .. 2013. 12. 6.
ASP Application 개체 Contents.Remove Contents.Remove 영문 Syntax: Application.Contents.Remove (Name|Integer) Name : The Name argument is the name of the item to be deleted. It must be enclosed in a pair of quotes. Integer : The Integer argument is the position number of the item in the collection to be deleted. The numbering sequence for a collection starts at one, not zero. The Contents.Remove method is used to remove a single item .. 2013. 12. 6.
ASP Application 개체 Contents.RemoveAll Contents.RemoveAll 영문 Syntax: Application.Contents.RemoveAllThe Contents.RemoveAll method is used to remove all items from a Contents collection. The Contents.RemoveAll method deletes all items that are in the Application.Contents collection. 번역본 구문 : Application.Contents.RemoveAllThe의 Contents.RemoveAll 방법은 목차 컬렉션에서 모든 항목을 제거하는 데 사용됩니다. Contents.RemoveAll 방법 삭제 Application.Contents 컬렉션에있는 모든 항목.. 2013. 12. 6.