How should I handle delete-situations in ASP.NET MVC - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T17:54:53Z http://stackoverflow.com/feeds/question/416646 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/416646/how-should-i-handle-delete-situations-in-asp-net-mvc 2 How should I handle delete-situations in ASP.NET MVC Peter Lindholm 2009-01-06T14:03:23Z 2009-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>&lt;% foreach (var subscriber in group.Subscribers) { %&gt; &lt;tr&gt; &lt;td&gt;&lt;%= subscriber.Email %&gt;&lt;/td&gt; &lt;td&gt;&lt;%= Html.ActionLink("[edit]", "edit", "subscriber", new {id=subscriber.SubscriberId}, null) %&gt;&lt;/td&gt; &lt;td&gt; &lt;form id="delete-subscriber-form" method="post" action="&lt;%= Url.Action( "delete", "subscriber", new { @subscriberId = subscriber.SubscriberId }) %&gt;"&gt; &lt;input type="submit" value="Delete" /&gt; &lt;/form&gt; &lt;/td&gt; &lt;/tr&gt; &lt;% } %&gt; </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#416657 5 Answer by ocdecio for How should I handle delete-situations in ASP.NET MVC ocdecio 2009-01-06T14:06:14Z 2009-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#416697 0 Answer by Peter Lindholm for How should I handle delete-situations in ASP.NET MVC Peter Lindholm 2009-01-06T14:17:34Z 2009-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#416700 0 Answer by Moran for How should I handle delete-situations in ASP.NET MVC Moran 2009-01-06T14:17:51Z 2009-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#416710 0 Answer by Ash for How should I handle delete-situations in ASP.NET MVC Ash 2009-01-06T14:20:35Z 2009-01-06T14:20:35Z <p>It depends on the situation, if you are doing CRUD operations you would normally go with one <code>&lt;form&gt;</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>