Hi Guys,
In my asp.net application, there is one HTML page. Already it has huge content. Now, we gotta requirement to show the application version in that HTML Page. Application version will be keep on changing frequently. Application version already in web.config file in appsetting -
<appSettings>
<add key="Version" value="Ver.15.9.4.56"/>
</appSettings>
Now I want to show that Key value from web.config in HTML page. Yes, I know using Javascript we can achieve it.
But I tried a lot am not able to access it using JS.
As my experience using JS we can access only in ASPX page not in HTML page. All the way I tried whatever stuffs got in googling. But No solution.
But I don't want to convert from HTML page to aspx page.
Please anybody help me out, Is there anyway to achieve this.
Thanks a lot in advance. awaiting for the response.