我需要阅读 javascript 中的配置文件设置。我在我的 aspx 页面中编写了以下代码。它返回空。
<script type="text/javascript" language="javascript">
function GetFileLocationFromConfig(keyP) {
var FileLocationL = '<%=ConfigurationManager.AppSettings[' + keyP+ '] %>';
return FileLocationL;
}
</script>