當用戶點擊linkButton時,需要打開新窗口才能顯示一些數據。 我試試這個:如何在dotnetnuke中打開aspx頁面如彈出窗口
string url = "~/SomePage.aspx";
string cmd = "window.open('" + url + "', '_blank', 'height=500,width=800,status=yes,toolbar=no,menubar=no,location=yes,scrollbars=yes,resizable=no,titlebar=no');";
ScriptManager.RegisterStartupScript(this, this.GetType(), "newWindow", cmd, true);
但它不工作。我甚至無法手動導航到此頁面。打開新窗口工作,但它在新窗口中打開相同的頁面。 那麼,如何在這個新窗口中顯示來自SomePage.aspx的內容呢?
在dnn 6 使用urlutils.popupurl ..查看登錄彈出如何打開 – 2011-12-06 09:35:52