根據我的應用程序中的某些值,我需要顯示帶有確定和取消的確認框,如果它們單擊確定,它應該繼續並導航到另一個頁面,否則如果它們單擊取消,它應該保持在同一頁面。使用Page.ClientScript從呼叫獲得響應
我遇到的問題是,彈出不顯示,除非我添加return語句如下
if (true)
{
Page.ClientScript.RegisterStartupScript(this.GetType(),
"ConfirmBox", "confirm('The numbers selected are not in the directory,"
+ sb.ToString()+
" you wish to continue?');", true);
return;
}
Response.Redirect("~/homepage.aspx");
正如你可以看到這是行不通的,因爲它永遠不會去,因爲重定向返回,但沒有返回,即使條件爲真,它也會跳過彈出窗口。我怎樣才能做到這一點?
請不要使用您的簽名。 http://stackoverflow.com/faq#signatures – Pankaj 2012-04-16 03:11:28