I got a TextBox binded to a String Url property.
When the user insert a link with the char ‘&’ it changes to amp;
This cause me lots of problems on other applications
Is there a way to disable this conversion ?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No. amp; is actually the correct way of doing querty/get strings. The reason for is that & is how the browser sees the end of a variable in the URL; & being a variable spliter. Putting in amp; makes sure the browsers know exactly that that isn’t the end of the variable. This is a global standard which all browsers are to adhere to.
Here is a good resource on this kind of stuff
http://www.w3.org/