I have an xml file which I am passing from one page to another. I don't have access to the page its being passed to so I can't change anything there.
The XML is in string format and posted to form by a button to its destination page.
<form id="frmGenerateReport" method="post">
<input type="hidden" id="xml" NAME="xml" runat="server">
</form>
On the submitting page I did an alert on the value and its fine, but on the recieving page I viewed the source and saw that it had swapped the " for "e;
Any ideas?
The XML is in string format and posted to form by a button to its destination page.
<form id="frmGenerateReport" method="post">
<input type="hidden" id="xml" NAME="xml" runat="server">
</form>
On the submitting page I did an alert on the value and its fine, but on the recieving page I viewed the source and saw that it had swapped the " for "e;
Any ideas?