Hi,
partial code in the web.config file goes like this:
<appSettings>
<add key="my_key" value="key_value" />
</appSettings>
Now, I want to get the value in my .aspx
I know that this can be done through the code behind (by ConfigurationManager.AppSettings["my_key"].ToString())
but I want that from the .aspx
I have tried <%$ appSettings:my_key%> but that didn't work
Please let me know if there is any other solution or not.
Thanks in advance
Supradip