URL's with parameters in web.config
How would you do something like this under appSettings in the web.config file:
<add key="reportUrl" value="http://www.myreportserver.com/Customer%20Online/?comp=A&user=bob&level=2"/>
Because the validation fails with " Expecting ';' " at the ampersand. I'm sure there must be an escape character I can use to store URL's with parameters in the web.config file.
Any help will be appreciated!