SplitSearch = split("Server1,Server2,Server3,Server4,Server5,Server6,Server7,Server8,Server9,Server10,Server11,Server12,Server13")
ArrayCounter = 0
ArrayPage = 0
dim PageArray
NumberPerPage = 4
for each x in SplitSearch
If ArrayCounter = NumberPerPage then
ArrayPage = ArrayPage + 1
ArrayCounter = 0
End if
if x <> "" then
ReDim PageArray(ArrayPage,ArrayCounter)
PageArray(ArrayPage,ArrayCounter) = x
' response.write(PageArray(ArrayPage,ArrayCounter)&"<br/>")
ArrayCounter = ArrayCounter + 1
end if
next
response.write(PageArray(1,1)&"<br/>")
Bookmarks