T
Tom
Trying to build a querystring using Attributes.Add:
return_ok.Attributes.Add("value",
"http://mydomain.com/finish.aspx?finish=324234" + @"&[email protected]"
+ @"&verify=32423dasdf3");
Renders this:
<input name="return_ok" type="hidden" id="return_ok"
value="http://mydomain.com/[email protected]&amp;verify=32423dasdf3"
/>
How to get just one & in the querystring?
return_ok.Attributes.Add("value",
"http://mydomain.com/finish.aspx?finish=324234" + @"&[email protected]"
+ @"&verify=32423dasdf3");
Renders this:
<input name="return_ok" type="hidden" id="return_ok"
value="http://mydomain.com/[email protected]&amp;verify=32423dasdf3"
/>
How to get just one & in the querystring?