How to get one Actinresult values in other Actionresult ..
Posted
by kumar
on Stack Overflow
See other posts from Stack Overflow
or by kumar
Published on 2010-05-21T19:06:31Z
Indexed on
2010/05/21
19:10 UTC
Read the original article
Hit count: 189
ASP.NET
|asp.net-mvc
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);
}
© Stack Overflow or respective owner