any workaround for NameValueCollection serialization?

  • Thread starter Thread starter Julia
  • Start date Start date
J

Julia

Hi,

I am trying to serialize Request.Params in a webform page and I understand
that .NET cannot
serialize this kind of object Yet

is there any workaround?

Thanks.
 
Why do you need to serialize the "parameters" of a web page. Likely you'll
use this once deserialized under some other form.
See if you can serialize under the final structure you'll use.

Patrice
 
"Why do you need to serialize the "parameters" of a web page"

Because I want to construct an object from the parameters,and this is the
most generic way for me

Maybe there is a suitable data structure to which I can copy the
NameValueCollection and than serialize it?



I don't wnt to use Soap Formatter since I hardly know XSL to convert the
result.

Thanks.
 
Back
Top