Hi
I'm trying to get a value from web config to html page and have following codes in web config and html page respectively
Web config
<add key="mySite" value="www.mysite.com" />
html
<a class="btn btn-primary " href=<%=ConfigurationManager.AppSettings["mySite"]%>>Resigster with us</a>
but it gives this result
http://localhost:49602/www.mysite.com
HOW TO GET VALUE WITHOUT localhost:49602
Please help to fix this