I have a web.config file, in connection string attribute, I have an '&' in password which creates error in parsing web.config file.
code:
<connectionStrings>
<clear/>
<add name="FamefaceDB" connectionString="Data Source=ec2-204-236-162-54.us-west-1.compute.amazonaws.com;Initial Catalog=famefacedb;User ID=Administrator;Password= t2kfPcn6?D& "/>
</connectionStrings>
The '&' in password is illegal and says hexadecimal value is illegal in XML file.
Is there any solution to this?