Link to a file external of the application

guiduantady

New Member
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 \[code\]index.html\[/code\] with 3 links like that:\[code\]<a href="http://stackoverflow.com/questions/12585334/Linea1/Pages/Sintesi.aspx"> Linea 1 </a> <br /><a href="http://stackoverflow.com/questions/12585334/Linea2/Pages/Sintesi.aspx"> Linea 2 </a> <br /><a href="http://stackoverflow.com/questions/12585334/Linea3/Pages/Sintesi.aspx"> Linea 3 </a> <br />\[/code\]In the webconfig of each application there are an appSettings value like that:\[code\]<add key="linkPaginaHome" value="http://stackoverflow.com/questions/12585334/Index.html" />\[/code\]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 \[code\]index.html\[/code\] 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 \[code\]index.html\[/code\] file?
 
Back
Top