How to get one Actinresult values in other Actionresult ..
- by kumar
this is the first controler which is calling my applciation I am getting all my studentinfo for updating studnet
can i call this et in updateresult Action result?
thanks
public ActionResult getresult(StduentInfo et)
{
return PartialView("Student", et);
}
public ActionResult updateresult(Stdentinfo et)
{
return PartialView(et);
}