b3ta.com board
You are not logged in. Login or Signup
Home » Messageboard » Message 2951341 (Thread)

# TJ : Any asp buffins out there??
i'm trying to pass some info from one page to another. trying to use
For Each fp In Request.QueryString('fp')

id = Trim(Request.QueryString('fp'))
response.write id
next

but i just keep getting the item id numbers back joined together! eg 2 3 4 2 3 4 2 3 4
(, Fri 26 Mar 2004, 11:57, archived)
# Hmm
Not quite sure what you're trying to do, but I think the second line should be:

id=Trim(fp)
or
id=Trim(Request(fp))

Otherwise you're not using the variable fp at all in the loop.
(, Fri 26 Mar 2004, 12:03, archived)
# soz
can't help (I use PHP 'cos it's better) but you might get some help on the sitepoint forums I rely on them quite a lot.
(, Fri 26 Mar 2004, 12:11, archived)