在Javascript中访问ConfigurationManager.AppSettings

时间:2013-08-28 14:16:40

标签: javascript asp.net

我在aspx文件中有这个javascript代码

Page.aspx

<asp:Content ID="Content1" ContentPlaceHolderID="Head" runat="server">
 ----some code----
 added after suggestion from Satpal
 <script type="text/javascript">
var GAAccountId = '<%=ConfigurationManager.AppSettings["GAAccountId"]%>';
</script>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
<%--<script type="text/javascript">
        debugger;
        var _gaq = _gaq || [];
        _gaq.push(['_setAccount', '<%=ConfigurationManager.AppSettings["GAAccountId"]%>']);
        _gaq.push(['_setDomainName', 'auto']);
        _gaq.push(['_setAllowLinker', true]);
        _gaq.push(['_trackPageview', '/Register']);
        _gaq.push(['_trackPageLoadTime']);

        (function () {
            var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
            ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
            var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
        })();

    </script>--%>
</asp:Content>

现在我将此代码移动到seprate .js文件并在javascript文件中包含引用。现在我无法访问它。它正在"'<%=ConfigurationManager.AppSettings["GAAccountId"]%>']"

如何从中获取价值。

1 个答案:

答案 0 :(得分:4)

<%=ConfigurationManager.AppSettings["GAAccountId"]%>文件中使用

aspx时,它将起作用。在外部js文件中使用它时,不会对它进行评估。

您可以在aspx页面中对变量进行decalre

<script type="text/javascript">
    var GAAccountId = '<%=ConfigurationManager.AppSettings["GAAccountId"]%>';
</script>

在JS文件中使用GAAccountId变量