i want to acess the web config value in javascript
config entry:
<add key ="RootPath" value ="C:\Test" />
javascript code:
var v1 = '<%=ConfigurationManager.AppSettings["RootPath"].ToString() %>'
The output that i am getting is
C:Test
but what i want is C:\Test
Any idea how to acheive this ?