Hi Guys and Gals

I Have an ASP page that takes about 20 different values from a Query string. I grab them all into one container as follows

Dim Params
Set Params = Request.Querystring

I Then store the object in the session using
session("Ihatethissession") = Params

The problem is that when I use another page and try to retrieve this Object I can't get to the values.

Iv'e tried the following with no success

Dim Getparams

Set Params = session("Ihatethissession")

or

Dim Getparams

Set Params = Request.Querystring
Params = session("Ihatethissession")

When I try to retrieve a value using params("myvalue")
It keeps on saying a type missmatch

If any one can help

Most appreciated

Ian