Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am working in VS 2010 and MVC2. Here i had loaded a gridview, which has edit option.Here is My Edit source

    public ActionResult Edit(int id) 
    { 
        return View(data.Products.FirstOrDefault(p => p.ProductID == id)); 
    } 


    [HttpPost] 
    public ActionResult Edit(Product producttoedit) 
    { 
        try 
        { 
            data.Products.Attach(data.Products.Single(p => p.ProductID == producttoedit.ProductID)); 
            data.Products.ApplyCurrentValues(producttoedit); 
            data.SaveChanges(); 
            return RedirectToAction("Index"); 
        } 
        catch 
        { 
            return View(); 
        } 
    } 

Issue : I cant get the "ApplyCurrentValues (data.Products.Apply..)" property here.What should i do..? or is there any option for edit coding in the gridview

share|improve this question
r u havig any coding for editable in gridview in mvc – Kajah User Nov 15 '10 at 10:02
what gridview is that ? – mare Nov 15 '10 at 12:26

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.