I want to load a path to picture from config file in order to show different pictures on different webapps.
Here I have
<add key="logoFileName" value="~/images/logo.png" />
And I want to use it like
<img src="@System.Configuration.ConfigurationManager.AppSettings["logoFileName"]" height="65" />
But .net only show "~/images/logo.png", wich must be interpreted by .net as well.
How to perform this in order to see the logo?