我想創建一個Javascript彈出式窗口詢問我是否要刪除列表。動作鏈接刪除確認
這裏是我目前所擁有的(不起作用 - 當控制器捕捉到Guid爲空時)。
@Html.ActionLink("Delete", "Delete", "Listing", listing.Guid, new { onclick = "return confirm('Are you sure you want to delete this listing?')" })
首先刪除是字符串,第二刪除是方法的ActionName,上市是控制器的名字,listing.Guid是我要跨越,最後,當然是的onclick發送參數是Javascript。
任何想法,我可能會出現可怕的錯誤?
編輯此外,任何想法如何我可以有一個更漂亮的確認對話框?使用Bootstrap。
看看這個答案:HTTP:/ /stackoverflow.com/questions/2537463/asp-net-mvc-how-to-make-users-confirm-the-delete][1] [1]:http://stackoverflow.com/問題/ 2537463/asp-net-mvc-how-to-make-users-confirm-the-delete –