N
None
I want to pass a serialized DataSet to a .NET WinForm control on a web page.
I am using a PARAM attribute in the OBJECT tag to pass the serialized string
to the control as follows:
<PARAM name="doc" value="<?xml..........(etc)">
The problem is that the string (the XML document) contains double-quote
characters and that is bad.
What's the best way to encode the string so that it can be succesfully
passed? I can use Base64 encoding but then I have to deal with byte arrays,
performance issues, etc. Is there an easier/better way?
I am using a PARAM attribute in the OBJECT tag to pass the serialized string
to the control as follows:
<PARAM name="doc" value="<?xml..........(etc)">
The problem is that the string (the XML document) contains double-quote
characters and that is bad.
What's the best way to encode the string so that it can be succesfully
passed? I can use Base64 encoding but then I have to deal with byte arrays,
performance issues, etc. Is there an easier/better way?