Usuń ActionLink za pomocą okna dialogowego potwierdzenia


98

Próbuję zaimplementować prosty ActionLink, który usunie rekordy za pomocą ASP.NET MVC. Oto, co mam do tej pory:

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

Jednak nie pokazuje pola potwierdzenia. Najwyraźniej czegoś brakuje lub nieprawidłowo utworzyłem łącze. Czy ktoś może pomóc?

Odpowiedzi:


211

Nie myl routeValuesz htmlAttributes. Prawdopodobnie chcesz tego przeciążenia :

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

16
Unikaj usuwania rekordów na żądanie GET! stackoverflow.com/questions/786070/ ...
user1068352

6
Słaba realizacja. Nie modyfikuj danych serwera w GET
Dan Hunex

z pewnością powinno być: new {id = item.storyId, onclick = "return confirm ('Czy na pewno chcesz usunąć ten artykuł?');" })
Ravendarksky

Jeśli nie mamy usuwać za pomocą get, to jak to zrobić za pomocą linku Action za pomocą POST?
Unbreakable

1
Zadzwoń do $ .Ajax, jeśli potwierdzeniem jest TAK?
Kiquenet

15

to są trasy, które mijasz

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

Przeciążona metoda, której szukasz, to ta:

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?');" })     %>

Powyższy kod działa tylko dla Html.ActionLink.

Dla

Ajax.ActionLink

użyj poniższego kodu:

<%= 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" })%>

Opcja „Potwierdź” określa pole potwierdzenia javascript.


4

Możesz także dostosować, przekazując element do usunięcia wraz z wiadomością. W moim przypadku używając MVC i Razor, więc mogłem zrobić to:

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

3

Spróbuj tego :

<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

Korzystając z sieci webgrid , możesz go znaleźć tutaj , linki do akcji mogą wyglądać następująco.

wprowadź opis obrazu tutaj

    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

Z obrazem i potwierdzeniem usunięcia, które działa na Mozilla Firefox

<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

Chciałem tego samego; przycisk usuwania w widoku szczegółów. W końcu zdałem sobie sprawę, że muszę pisać z tego widoku:

@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?');" />
        }

W Administratorze:

 // 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

wprowadź opis obrazu tutajMVC5 z oknem usuwania i glifem. Może działać poprzednie wersje.

@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

Każde kliknięcie przed aktualizacją / edycją / usunięciem rekordów okno komunikatu ostrzega użytkownika i jeśli „OK” kontynuuje akcję, w przeciwnym razie „anuluj” pozostaje niezmienione. W przypadku tego kodu nie ma potrzeby poprawiania oddzielnego kodu skryptu java. mi to pasuje

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


-2

Możesz również spróbować tego dla Html.ActionLink DeleteId


3
Czy możesz trochę wyjaśnić tę odpowiedź? Może podaj fragment kodu, który demonstruje Twoją sugestię lub opisz, gdzie w kodzie OP to powinno się znaleźć?
skrrgwasme
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.