what's the asp equivalent to php's .= when concatenating strings?? oh and i'm referring to asp NOT asp.net.
argh...i meant to specify that i'm in a for loop. so i want to know the equivalent for .= (in php) not standard concatenation.
example below:
For Each Item In Request.Form
If (Item = "service") then
For x=1 To Request.Form(item).Count
service = "&service="&Request.Form(Item)(x)
Next
End If
Next