siva nathan

siva nathan

  • 876
  • 819
  • 216.6k

I Can't get value from list while Editing in MVC

Mar 7 2017 5:39 AM
name    email   
siva         [email protected]        Edit|Details|Delete
 
 
[HttpGet]
public ActionResult Edit(string name)
{
var model = new List<Registration>();
Registration reg = model.FirstOrDefault(emp => emp.Name == name);
if (reg == null)
return HttpNotFound();
return View(reg);
}
while im clicking Edit link i'm getting name=null
how can i get name from this 

Attachment: Screenshot_(10).rar

Answers (20)