gpt4 book ai didi

javascript - 从 web.config 读取键值时,aspx 页面中的标识符预期出现错误 javascript

转载 作者:行者123 更新时间:2023-12-03 04:48:00 24 4
gpt4 key购买 nike

我正在尝试在 .aspx 页面中使用 javascript 从 web.config 读取键值。该页面包含在母版页中,脚本 block 添加在我的 aspx 页面的 ContentPlaceHolder 标记中,如下所示;这个问题之前在这里被问过how to read values from web.config in javascript in aspx page但没有明确的解决方案。有人建议返回服务器端,但我试图避免返回服务器以加速用户在页面上的工作......所以下面是我的代码:

<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<script type="text/javascript">

function CheckCountry() {
var country = '<%= System.Configuration.ConfigurationManager.AppSettings["LoginCountry"].ToString() %>';
alert(country);
}

window.onload = CheckCountry;

</script>
....
</asp:Content>

但是每当我尝试运行我的项目时,我都会在 Visual Studio 2010 的“列表错误”框中收到此错误。我也尝试过这个'<%=ConfigurationManager.AppSettings["LoginCountry"].ToString() %>'但没有用,抛出了同样的错误......可能是什么问题呢?我该如何解决这个问题并从我的 aspx 页面中的 web.config 获取国家/地区的值?

最佳答案

Visual Studo 2010 编辑器似乎对 ' 的组合感到困惑和内联代码 <%= ... %> 。因为在 Studio 2015 中以下行确实有效:

var country = '<%= System.Configuration.ConfigurationManager.AppSettings["LoginCountry"].ToString() %>';

您可以尝试在代码中使用 javascript 创建整行,也许编辑器就不会感到困惑。

<%= "var country2 = '" + System.Configuration.ConfigurationManager.AppSettings["LoginCountry"].ToString() + "';" %>

或者在后面的代码中:

public string javaScript;
protected void Page_Load(object sender, EventArgs e)
{
javaScript = "var country = '" + ConfigurationManager.AppSettings["LoginCountry"].ToString() + "';";
}

然后在aspx页面上

function CheckCountry() {
<%= javaScript %>
.... etc
}

关于javascript - 从 web.config 读取键值时,aspx 页面中的标识符预期出现错误 javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42787085/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com