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 | 31 |
Tags
- sql업데이트
- sql랭킹
- SPLIT
- 인젝션
- wap
- join
- ERD
- JavaScript
- 이미지가로길이
- injection
- sql순위
- update
- xmldom
- asp함수
- VARIABLE
- 한글입력체크
- FileSystemObject
- array
- 정규식
- XML
- inner join
- MSSQL보안
- jdbc driver
- 이미지세로길이
- instr
- javascript 한글입력체크
- tempDB
- WML
- 자바기초
- VarType
Archives
- Today
- Total
3초기억력
ASP - VarType 종류 본문
The VarType function returns a value that indicates the subtype of a specified variable.
The VarType function can return one of the following values:
- 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.
Syntax
VarType(varname) |
Parameter | Description |
---|---|
varname | Required. A variable name |
Example
Example
The output of the code above will be:
|
'플밍_ASP' 카테고리의 다른 글
ASP - 정규식 사용하여 html 본문의 A 태그 삭제하기 (0) | 2011.04.27 |
---|---|
ASP - ServerVariables 몽땅 나타내기 (0) | 2011.04.20 |
ASP - WinHttpRequest 의 getResponseHeader() 메소드 (0) | 2011.04.20 |
ASP - CDO 메일 보내기 샘플 (0) | 2011.04.19 |
ASP - VBScript VarType Function (0) | 2011.04.15 |
Comments