I have a website with 3 applications. In the website root there are 3 folders (each one contains one asp.net application) and a file named index.html with 3 links like that:
<a href="Linea1/Pages/Sintesi.aspx"> Linea 1 </a> <br />
<a href="Linea2/Pages/Sintesi.aspx"> Linea 2 </a> <br />
<a href="Linea3/Pages/Sintesi.aspx"> Linea 3 </a> <br />
In the webconfig of each application there are an appSettings value like that:
<add key="linkPaginaHome" value="Index.html" />
In each page of the three apps there is a link and his href value is readed from the web.config.
In other words, I want allow you to go to the index.html page from each one of the applications of the site and this parameter must be configurable.
What should I write in the webconfig value to make it points to the index.html file?
I simply used the full url:
instead of writing only