Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<%
Dim aDrives
Dim Size
aDrives = Array("T", "U", "V", "W", "X", "Y", "Z")
[blue]Size = Filter(aDrives, [!]"X"[/!], False)[/blue]
For i = lBound(Size) to uBound(Size)
Response.write(Size(i) & "<br />")
Next
%>