How should I handle delete-situations in ASP.NET MVC - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T17:54:53Zhttp://stackoverflow.com/feeds/question/416646http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/416646/how-should-i-handle-delete-situations-in-asp-net-mvc2How should I handle delete-situations in ASP.NET MVCPeter Lindholm2009-01-06T14:03:23Z2009-01-06T14:20:35Z
<p>How should I initiate a delete action from my view?</p>
<p>Creating a new form-tag for each entity just doesn't seem right :-)</p>
<pre><code><% foreach (var subscriber in group.Subscribers) { %>
<tr>
<td><%= subscriber.Email %></td>
<td><%= Html.ActionLink("[edit]", "edit", "subscriber", new {id=subscriber.SubscriberId}, null) %></td>
<td>
<form id="delete-subscriber-form" method="post" action="<%= Url.Action( "delete", "subscriber", new { @subscriberId = subscriber.SubscriberId }) %>">
<input type="submit" value="Delete" />
</form>
</td>
</tr>
<% } %>
</code></pre>
<p>How would you do it?</p>
http://stackoverflow.com/questions/416646/how-should-i-handle-delete-situations-in-asp-net-mvc/416657#4166575Answer by ocdecio for How should I handle delete-situations in ASP.NET MVCocdecio2009-01-06T14:06:14Z2009-01-06T14:06:14Z<p>I normally use checkboxes on the side of the items. Then I can have action links (buttons, whatever) that apply an action to the selected items (such as delete).</p>
http://stackoverflow.com/questions/416646/how-should-i-handle-delete-situations-in-asp-net-mvc/416697#4166970Answer by Peter Lindholm for How should I handle delete-situations in ASP.NET MVCPeter Lindholm2009-01-06T14:17:34Z2009-01-06T14:17:34Z<p>Don't know why I didn't think of that.</p>
<p>Nice and simple - thank you :)</p>
http://stackoverflow.com/questions/416646/how-should-i-handle-delete-situations-in-asp-net-mvc/416700#4167000Answer by Moran for How should I handle delete-situations in ASP.NET MVCMoran2009-01-06T14:17:51Z2009-01-06T14:17:51Z<p>you can use CSS and Javascript , add 'forDel' css class for all the elments you want to delete , if you are going to use jquery you can do it like this:</p>
<pre><code> $(".element").each(function(){
$(this).data("id","the id of the element in db")
});
$(".element").toggle(function(){
$(this).addClass("forDel");
},function(){
$(this).removeClass("forDel");
});
</code></pre>
<p>and then on pressing the delete button:</p>
<pre><code>var idsForDel;
$(".forDel").each(function(){
idsForDel = $(this).data("id"); + ";";
})
</code></pre>
<p>you can pass the idsForDel to the Controller ... and split it in the server side.</p>
http://stackoverflow.com/questions/416646/how-should-i-handle-delete-situations-in-asp-net-mvc/416710#4167100Answer by Ash for How should I handle delete-situations in ASP.NET MVCAsh2009-01-06T14:20:35Z2009-01-06T14:20:35Z<p>It depends on the situation, if you are doing CRUD operations you would normally go with one <code><form></code> tag per operation (delete,edit,new). If, however, you are displaying a list and you want to be able to 'multiple delete' items with one click then you will have to approach it from a different angle as you need to encapsulate all the required information into one form.</p>
<p><strong>EDIT</strong></p>
<p>Having had another look at your post above I notice you are providing a 'Delete Button' against each element in the list. For atomic actions like this (i.e. the user expects something to happen straight after they have clicked a button) I would definitely use one form per item. </p>
<p>What I wrote above still applies...</p>