split querystring

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm passing a querystring to another page and the string has True and a
number associated with the true.

the string looks like this:

true|false|false|1|2|3|
(true & false is the value of the checkbox)
how can i split this string up and only show True and the number associated
with it?
 
Use string.split to parse the string on the |, then simply pull out valuesat
positions 1 + 3 , 2 + 3 and 3 + 3 to get your key pairs.

--
Regards

John Timney
Microsoft Regional Director
Microsoft MVP
 
Back
Top