S
Steve G
FP 2002
Hi All:
I have a slightly off-topic question regarding some code I am trying to get
to work.
I am creating an array from a database then a string from the array. the
values are being returned correctly.
arrID = objRs3.GetRows
for a = 0 to uBound(arrID,2)
for b = 0 to uBound(arrID,1)
strVal = strVal & " " & arrID(b,a)
next
strVal = strVal & ","
next
strVal = Left(strVal, Len(strVal) -1)
parArray = split(StrVal, ",")
I am trying to create a parameterized link to another page:
for i = 0 to uBound(parArray)
response.write "<param name='"somevalue"'
value=""http://www.domainname.com/score.asp?par='"&parArray(i)&"' "">"
next
The link is generated, but when I click on it, it goes to the page but the
query string reads:
http://www.domainname.com/score.asp?par=' 2'
Could someone take a look, and tell me where I am going wrong here?
TIA
Steve G
Hi All:
I have a slightly off-topic question regarding some code I am trying to get
to work.
I am creating an array from a database then a string from the array. the
values are being returned correctly.
arrID = objRs3.GetRows
for a = 0 to uBound(arrID,2)
for b = 0 to uBound(arrID,1)
strVal = strVal & " " & arrID(b,a)
next
strVal = strVal & ","
next
strVal = Left(strVal, Len(strVal) -1)
parArray = split(StrVal, ",")
I am trying to create a parameterized link to another page:
for i = 0 to uBound(parArray)
response.write "<param name='"somevalue"'
value=""http://www.domainname.com/score.asp?par='"&parArray(i)&"' "">"
next
The link is generated, but when I click on it, it goes to the page but the
query string reads:
http://www.domainname.com/score.asp?par=' 2'
Could someone take a look, and tell me where I am going wrong here?
TIA
Steve G