Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 이미지세로길이
- JavaScript
- VARIABLE
- FileSystemObject
- xmldom
- sql랭킹
- 자바기초
- sql순위
- 정규식
- ERD
- asp함수
- tempDB
- WML
- 한글입력체크
- sql업데이트
- instr
- SPLIT
- 이미지가로길이
- MSSQL보안
- 인젝션
- XML
- injection
- javascript 한글입력체크
- join
- wap
- VarType
- update
- array
- jdbc driver
- inner join
Archives
- Today
- Total
3초기억력
ASP - VBScript VarType Function 본문
제목 : VBScript VarType Function
<script type="text/vbscript">
x="Hello World!"
document.write(VarType(x) & "<br />")
x=4
document.write(VarType(x) & "<br />")
x=4.675
document.write(VarType(x) & "<br />")
x=Null
document.write(VarType(x) & "<br />")
x=Empty
document.write(VarType(x) & "<br />")
x=True
document.write(VarType(x))
</script>
8 2 5 1 0 11 |
내용 :
The VarType function returns a value that indicates the subtype of a specified variable.
(해석 : VarType 함수는 지정된 변수의 종류를을 나타내는 값. )
The VarType function can return one of the following values:
(해석 : VarType 함수는 다음 값 중 하나를 반환할 수 있습니다 : )
- 0 = vbEmpty - Indicates Empty (uninitialized)
- 1 = vbNull - Indicates Null (no valid data)
- 2 = vbInteger - Indicates an integer
- 3 = vbLong - Indicates a long integer
- 4 = vbSingle - Indicates a single-precision floating-point number
- 5 = vbDouble - Indicates a double-precision floating-point number
- 6 = vbCurrency - Indicates a currency
- 7 = vbDate - Indicates a date
- 8 = vbString - Indicates a string
- 9 = vbObject - Indicates an automation object
- 10 = vbError - Indicates an error
- 11 = vbBoolean - Indicates a boolean
- 12 = vbVariant - Indicates a variant (used only with arrays of Variants)
- 13 = vbDataObject - Indicates a data-access object
- 17 = vbByte - Indicates a byte
- 8192 = vbArray - Indicates an array
Note: If the variable is an array VarType() returns 8192 + VarType(array_element). Example: for an array of integer VarType() will return 8192 + 2 = 8194.
'플밍_ASP' 카테고리의 다른 글
ASP - WinHttpRequest 의 getResponseHeader() 메소드 (0) | 2011.04.20 |
---|---|
ASP - CDO 메일 보내기 샘플 (0) | 2011.04.19 |
ASP - html 중 img 태그 내부 속성값만 가져오기 (0) | 2011.04.15 |
ASP - 정규식을 이용한 html 중 img 태그만 추출 (0) | 2011.04.15 |
ASP - 오라클 BLOB type 에 외부 URL 이미지의 Binary 를 insert 하고, view 하는 소스 (0) | 2011.04.15 |
Comments