vote up 0 vote down star

I had user control in MVC asp.net which list the comments for particular image. I had given delete link with every comment. Now i want to delete that comment using ajax link. Please tell me how can i use ajax This is my user controll and i am calling controller action on delete link

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="ListComment.ascx.cs" Inherits="gConnect.Views.Shared.ListComment" %>

  • <% Response.Write("");%>

                <div class="views "><span><%= ViewData.Model.Username.Substring(ViewData.Model.Username.IndexOf("-")+1)     %></span></div>
                <div class ="deletem" ><span><%= Ajax.ActionLink("Delete", "DeleteComment/" + ViewData.Model.Username.Substring(0, 2) + "." + ViewData.Model.Id, new AjaxOptions(UpdateTargetId = "comments"))%></span></div>
                <div class="question">
                    <h3 class="title"><%= Html.Encode(ViewData.Model.Comment  )%></h3>
                </div>
            </div>
        </li>
    
  • flag
    I am using mvc asp.net application in vs2008 will update panel work in it. – avinash mahajan Jan 20 '09 at 14:23

    3 Answers

    vote up 0 vote down

    Use jQuery:

    <script type="text/javascript">
        function deleteComment(id) {
            $.post(
                "/MyController/DeleteAction",
                { id : id }
                function (data) {
                    // do some gui updates
                });
         }
    </script>
    

    And use in a link:

    <a onclick="deleteComment(<%= CommentId %>); return false;" href="#">Delete</a>
    
    link|flag
    vote up 0 vote down

    First, make sure that your delete link posts a form. Your question is not clear about this, but since you say that you are using a delete link I am guessing that you are doing this with a GET. Actions that modify resources should be done via POST, not GET.

    Once you've done that, you can use the jQuery AJAX form plug-in to do the post via AJAX. It's quite simple, and once you have a working form to do that delete, you will find converting its to use the AJAX plug-in to submit the form instead very straightforward. Just follow the examples on the site.

    link|flag
    vote up 0 vote down

    Use an Update Panel. It will capture the post back from your delete link and asyncronously reload the content.

    Take a look at http://www.asp.net/ajax/documentation/live/Tutorials/CreatingPageUpdatePanel.aspx for an example.

    Hope that helps.

    Gavin

    link|flag
    I am using mvc asp.net application in vs2008 will update panel work in it – avinash mahajan Jan 20 '09 at 14:42
    Mostly, no. The Microsoft AJAX ASP controls use ViewState, and are thus incompatible with MVC. It's possible to make it work with the "client-only" version of the library, but now that jQuery is officially supported, it turns out to be a much better solution for AJAX coding. – Craig Stuntz Jan 20 '09 at 15:46

    Your Answer

    Get an OpenID
    or

    Not the answer you're looking for? Browse other questions tagged or ask your own question.