在Javascript中访问app.config值

时间:2013-01-11 20:28:37

标签: javascript app-config

我需要使用app.config中的值填充变量。有没有办法在Javascript中执行此操作?这就是我现在所拥有的,但我不相信它在任何方面都是正确的。

var notConfident = ConfigurationManager.AppSettings["GoogleValue"];

1 个答案:

答案 0 :(得分:2)

不,javascript在客户端浏览器中运行,app config是服务器中的文件。

您可以通过将其发送到客户端来获取值,例如:

.aspx文件:

<input type="hidden" id="ikey" runat="server" />

.cs文件,页面加载方法:

ikey.InnerText = ConfigurationManager.AppSettings["GoogleValue"];

.js文件,onload方法:

var something = document.getElementById("ikey").value;