確認ダイアログでActionLinkを削除する


98

ActionLinkASP.NET MVCを使用してレコードを削除するシンプルなものを実装しようとしています。これは私がこれまでに持っているものです:

<%= Html.ActionLink("Delete", 
                    "Delete", 
                    new { id = item.storyId, 
                          onclick = "return confirm('Are you sure?');" 
                        })%> 

ただし、確認ボックスは表示されません。明らかに何かが足りないか、リンクを誤って構築しました。誰か助けてもらえますか?

回答:


211

混同しないようにしてくださいrouteValueshtmlAttributes。おそらくこのオーバーロードが必要です:

<%= Html.ActionLink(
    "Delete", 
    "Delete", 
    new { id = item.storyId }, 
    new { onclick = "return confirm('Are you sure you wish to delete this article?');" }) 
%>

16
GETリクエスト時にレコードを削除しないでください!stackoverflow.com/questions/786070/...
user1068352

6
貧弱な実装。GETでサーバーデータを変更しないでください
Dan Hunex

新しい{id = item.storyId、onclick = "return confirm( 'Are you sure you want to delete this Article?');" })
Ravendarksky

getを使用して削除することを想定していない場合、POSTを使用してアクションリンクを経由する方法は?
壊れない2017

1
確認がYESの場合、$。Ajaxを呼び出しますか?
Kiquenet

15

それらはあなたが通っているルートです

<%= Html.ActionLink("Delete", "Delete",
    new { id = item.storyId }, 
    new { onclick = "return confirm('Are you sure you wish to delete this article?');" })     %>

あなたが探しているオーバーロードされたメソッドはこれです:

public static MvcHtmlString ActionLink(
    this HtmlHelper htmlHelper,
    string linkText,
    string actionName,
    Object routeValues,
    Object htmlAttributes
)

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


15
<%= Html.ActionLink("Delete", "Delete",
    new { id = item.storyId }, 
    new { onclick = "return confirm('Are you sure you wish to delete this article?');" })     %>

上記のコードはHtml.ActionLinkに対してのみ機能します。

ために

Ajax.ActionLink

次のコードを使用します。

<%= Ajax.ActionLink(" ", "deleteMeeting", new { id = Model.eventID, subid = subItem.ID, fordate = forDate, forslot = forslot }, new AjaxOptions
                                            {
                                                Confirm = "Are you sure you wish to delete?",
                                                UpdateTargetId = "Appointments",
                                                HttpMethod = "Get",
                                                InsertionMode = InsertionMode.Replace,
                                                LoadingElementId = "div_loading"
                                            }, new { @class = "DeleteApointmentsforevent" })%>

「確認」オプションは、JavaScriptの確認ボックスを指定します。


4

メッセージと一緒に削除アイテムを渡すことで、をカスタマイズすることもできます。私の場合、MVCとRazorを使用しているので、これを行うことができます:

@Html.ActionLink("Delete", 
    "DeleteTag", new { id = t.IDTag }, 
    new { onclick = "return confirm('Do you really want to delete the tag " + @t.Tag + "?')" })

3

これを試して :

<button> @Html.ActionLink(" ", "DeletePhoto", "PhotoAndVideo", new { id = item.Id }, new { @class = "modal-link1", @OnClick = "return confirm('Are you sure you to delete this Record?');" })</button>

3

ここでwebgrid 使用すると、アクションリンクは次のようになります。

ここに画像の説明を入力してください

    grid.Column(header: "Action", format: (item) => new HtmlString(
                     Html.ActionLink(" ", "Details", new { Id = item.Id }, new { @class = "glyphicon glyphicon-info-sign" }).ToString() + " | " +
                     Html.ActionLink(" ", "Edit", new { Id = item.Id }, new { @class = "glyphicon glyphicon-edit" }).ToString() + " | " +
                     Html.ActionLink(" ", "Delete", new { Id = item.Id }, new { onclick = "return confirm('Are you sure you wish to delete this property?');", @class = "glyphicon glyphicon-trash" }).ToString()
                )

1

画像と削除の確認あり。MozillaFirefoxで動作します

<button> @Html.ActionLink(" ", "action", "controller", new { id = item.Id }, new { @class = "modal-link1", @OnClick = "return confirm('Are you sure you to delete this Record?');" })</button>
<style>
a.modal-link{ background: URL(../../../../Content/Images/Delete.png) no-repeat center;
            display: block;
            height: 15px;
            width: 15px;

        }
</style>

1

私も同じものが欲しかった。詳細ビューの削除ボタン。私は最終的にその見方から投稿する必要があることに気づきました:

@using (Html.BeginForm())
        {
            @Html.AntiForgeryToken()
            @Html.HiddenFor(model => model.Id)
            @Html.ActionLink("Edit", "Edit", new { id = Model.Id }, new { @class = "btn btn-primary", @style="margin-right:30px" })

            <input type="submit" value="Delete" class="btn btn-danger" onclick="return confirm('Are you sure you want to delete this record?');" />
        }

そして、コントローラで:

 // this action deletes record - called from the Delete button on Details view
    [HttpPost]
    public ActionResult Details(MainPlus mainPlus)
    {
        if (mainPlus != null)
        {
            try
            {
                using (IDbConnection db = new SqlConnection(PCALConn))
                {
                    var result = db.Execute("DELETE PCAL.Main WHERE Id = @Id", new { Id = mainPlus.Id });
                }
                return RedirectToAction("Calls");
            } etc

0

ここに画像の説明を入力してください削除ダイアログとグリフィコンを備えたMVC5。以前のバージョンで動作する場合があります。

@Html.Raw(HttpUtility.HtmlDecode(@Html.ActionLink(" ", "Action", "Controller", new { id = model.id }, new { @class = "glyphicon glyphicon-trash", @OnClick = "return confirm('Are you sure you to delete this Record?');" }).ToHtmlString()))

-1

レコードの更新/編集/削除のメッセージボックスの前にクリックイベントが発生すると、ユーザーに警告が表示され、「OK」で処理が続行された場合、「キャンセル」は変更されません。このコードでは、Javaスクリプトのコードを個別に正しく分離する必要はありません。わたしにはできる

<a asp-action="Delete" asp-route-ID="@Item.ArtistID" onclick = "return confirm('Are you sure you wish to remove this Artist?');">Delete</a>


-2

Html.ActionLink DeleteIdでもこれを試すことができます


3
この答えを少し説明できますか?多分あなたの提案を示すか、OPのコードのどこにこれが行くべきかを説明するコードスニペットを提供しますか?
skrrgwasme 2014
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.