here is the problem
public ActionResult One()
{
if(condition)
return View()
else
return Two()
}
public ActionResult Two()
{
return View()
}
how can I do that without error
here is the problem
public ActionResult One()
{
if(condition)
return View()
else
return Two()
}
public ActionResult Two()
{
return View()
}
how can I do that without error