IIS Config file and ampersand
Today I stumbled upon an interesting issue with web.config. Config files are XML files and they are also processed like such. In order to store a special character, you need to escape it. If not config file is invalid and the application is unable to start up.
Examples of some escape sequences:
- Ampersand (&): '
&' - Greater than (>): '
>' - Less than (<): '
<' - Apostrophe ('): '
'' - Quote ("): '
"'
- Previous: GIT troubleshoot an issue with SSH access
- Next: IIS Restart