Problem with updating data in asp .NET MVC 2 application

Posted by Bojan on Stack Overflow See other posts from Stack Overflow or by Bojan
Published on 2010-05-10T10:35:19Z Indexed on 2010/05/10 10:44 UTC
Read the original article Hit count: 331

Filed under:

Hello everyone, i am just getting started with asp .NET MVC 2 applications and i stumbled upon a problem. I'm having trouble updating my tables. The debugger doesn't report any error, it just doesn't do anything... I hope some can help me out. Thank you for your time. This is my controller code...

public ActionResult Edit(int id)
    {
        var supplierToEdit = (from c in _entities.SupplierSet
                              where c.SupplierId == id
                              select c).FirstOrDefault();

        return View(supplierToEdit);
    }

    //
    // POST: /Supplier/Edit/5

    [AcceptVerbs(HttpVerbs.Post)]
    public ActionResult Edit(Supplier supplierToEdit)
    {
        if (!ModelState.IsValid)
            return View();

        try
        {
            var originalSupplier = (from c in _entities.SupplierSet
                                    where c.SupplierId == supplierToEdit.SupplierId
                                    select c).FirstOrDefault();

            _entities.ApplyPropertyChanges(originalSupplier.EntityKey.EntitySetName, supplierToEdit);
            _entities.SaveChanges();
            // TODO: Add update logic here

            return RedirectToAction("Index");
        }
        catch
        {
            return View();
        }
    }

This is my View ...

<h2>Edit</h2>

<% using (Html.BeginForm()) {%>
    <%= Html.ValidationSummary(true) %>

    <fieldset>
        <legend>Fields</legend>



        <div class="editor-label">
            <%= Html.LabelFor(model => model.CompanyName) %>
        </div>
        <div class="editor-field">
            <%= Html.TextBoxFor(model => model.CompanyName) %>
            <%= Html.ValidationMessageFor(model => model.CompanyName) %>
        </div>

        <div class="editor-label">
            <%= Html.LabelFor(model => model.ContactName) %>
        </div>
        <div class="editor-field">
            <%= Html.TextBoxFor(model => model.ContactName) %>
            <%= Html.ValidationMessageFor(model => model.ContactName) %>
        </div>

        <div class="editor-label">
            <%= Html.LabelFor(model => model.ContactTitle) %>
        </div>
        <div class="editor-field">
            <%= Html.TextBoxFor(model => model.ContactTitle) %>
            <%= Html.ValidationMessageFor(model => model.ContactTitle) %>
        </div>

        <div class="editor-label">
            <%= Html.LabelFor(model => model.Address) %>
        </div>
        <div class="editor-field">
            <%= Html.TextBoxFor(model => model.Address) %>
            <%= Html.ValidationMessageFor(model => model.Address) %>
        </div>

        <div class="editor-label">
            <%= Html.LabelFor(model => model.City) %>
        </div>
        <div class="editor-field">
            <%= Html.TextBoxFor(model => model.City) %>
            <%= Html.ValidationMessageFor(model => model.City) %>
        </div>

        <div class="editor-label">
            <%= Html.LabelFor(model => model.PostalCode) %>
        </div>
        <div class="editor-field">
            <%= Html.TextBoxFor(model => model.PostalCode) %>
            <%= Html.ValidationMessageFor(model => model.PostalCode) %>
        </div>

        <div class="editor-label">
            <%= Html.LabelFor(model => model.Country) %>
        </div>
        <div class="editor-field">
            <%= Html.TextBoxFor(model => model.Country) %>
            <%= Html.ValidationMessageFor(model => model.Country) %>
        </div>

        <div class="editor-label">
            <%= Html.LabelFor(model => model.Telephone) %>
        </div>
        <div class="editor-field">
            <%= Html.TextBoxFor(model => model.Telephone) %>
            <%= Html.ValidationMessageFor(model => model.Telephone) %>
        </div>

        <div class="editor-label">
            <%= Html.LabelFor(model => model.Fax) %>
        </div>
        <div class="editor-field">
            <%= Html.TextBoxFor(model => model.Fax) %>
            <%= Html.ValidationMessageFor(model => model.Fax) %>
        </div>

        <div class="editor-label">
            <%= Html.LabelFor(model => model.HomePage) %>
        </div>
        <div class="editor-field">
            <%= Html.TextBoxFor(model => model.HomePage) %>
            <%= Html.ValidationMessageFor(model => model.HomePage) %>
        </div>

        <p>
            <input type="submit" value="Save" />
        </p>
    </fieldset>

<% } %>

<div>
    <%= Html.ActionLink("Back to List", "Index") %>
</div>

© Stack Overflow or respective owner

Related posts about asp.net-mvc-2