我正在尝试在配置文件中存储一个URL,但是当我从文件中检索URL时它不起作用
以下是我的代码
在web.config中,我有
<add key="URL" value="/NG/Viewer/ViewerSummary.aspx"/>
在我的aspx.cs页面中,我有以下代码
string url = ConfigurationManager.AppSettings["URL"];
string strScript = "window.open(url?QueryID=" + QueryId + "', '_blank','height=650, center:yes, width=800, status=no, resizable= yes, menubar=no, toolbar=no, location=yes, scrollbars=yes, status=no');";
ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "strScript", strScript, true);
如果我编写上面的代码,窗口就不会打开,但如果我在下面的代码中执行此操作,则会打开窗口。
string strScript = "window.open('/NG/Viewer/ViewerSummary.aspx?QueryID=" + QueryId + "', '_blank','height=650, center:yes, width=800, status=no, resizable= yes, menubar=no, toolbar=no, location=yes, scrollbars=yes, status=no');";
ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "strScript", strScript, true);
如何通过将值放在配置文件中来打开窗口?
任何帮助表示赞赏。
感谢。
答案 0 :(得分:6)
可能是您粘贴的代码有几处错误。第一个错误是你错过了window.open调用中的开头单引号。另一个错误是您实际上没有使用url
变量。
试试这个:
string strScript = "window.open('" + url + "?QueryID=" + QueryId + "', '_blank','height=650, center:yes, width=800, status=no, resizable= yes, menubar=no, toolbar=no, location=yes, scrollbars=yes, status=no');";
答案 1 :(得分:0)
string strScript = "window.open('" + url + "?QueryID=" + QueryId + "', '_blank','height=650, center:yes, width=800, status=no, resizable= yes, menubar=no, toolbar=no, location=yes, scrollbars=yes, status=no');";
ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "strScript", strScript, true);
答案 2 :(得分:0)
请参阅下面列出的使用URLEncode方法的文章。