4

我正在尝试将 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);

如何通过将值放入配置文件中来打开窗口?
任何帮助表示赞赏。

谢谢。

4

3 回答 3

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');";
于 2012-12-11T17:38:25.060 回答
0

有关使用 URLEncode 方法的信息,请参阅下面列出的文章。

http://msdn.microsoft.com/en-us/library/zttxte6w.aspx

于 2012-12-11T17:39:32.993 回答
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);
于 2012-12-11T17:38:30.657 回答