Re: QueryString - WeOnlyDo Discussion board

Re: QueryString (General questions)

by Pedro A., Monday, August 02, 2004, 17:19 (7204 days ago) @ wodSupport

It actually parses 1,2,3,4 to 4 separated variables. I need it doesn't do that. I need to say .QueryString( posted ) and get 1,2,3,4 .

Now, the library creates 4 objects posted , each one with a different value:
.QueryString(0).name = posted .QueryString(0).value = 1
.QueryString(0).name = posted .QueryString(0).value = 2
.QueryString(0).name = posted .QueryString(0).value = 3
.QueryString(0).name = posted .QueryString(0).value = 4

And I need only one:
.QueryString(0).name = posted .QueryString(0).value = 1,2,3,4
Because my target is use SPLIT method.


Complete thread: