Toran,
This code piece create one array with the CaseAsset values entered in the query string:
Code:
Dim CaseAsset()
Dim i
Dim ca_dim
If (Request.QueryString.Count>0) Then
ca_dim=CInt(Request.QueryString.Count)
Redim CaseAsset(ca_dim)
i=0
For Each It In Request.QueryString
If Left(It,9)="CaseAsset" Then
i=i+1
CaseAsset(i)=Request.QueryString(It)
End If
Next
End If
...but the Soon is eclipsed by the Moon