IsArray function of ASP

Source: Internet
Author: User
Tags array variable
The IsArray function returns a Boolean value indicating whether a variable is an array.

IsArray function
Returns a Boolean value that indicates whether a variable is an array.
Grammar
IsArray (varname)
The varname parameter can be any variable.
Description
If the variable is an array, the IsArray function returns TRUE, otherwise the function returns FALSE. Using the IsArray function works well when a variable contains an array.
Example:
<%
Dim A (10)
For i= 1 to 10
A (i) =i
Next
Response.Write (IsArray (a))

%>
The result is: true

This function is used relatively little. It would be nice to know that there was a function.



Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.