Is there an easy way to read settings from a (asp.net) web.config file using javascript within a html page?
BTW I have found examples of passing config settings into javascript blocks within aspx pages e.g.
<script type="text/javascript">
function ReadConfigSettings(){
var wibble = '<%=ConfigurationManager.ConnectionStrings["MyConnString"].ConnectionString %>' }
</script>
but this is NOT what I'm trying to do. I need to read the settings from within a stand-alone html page.