我有一个控制器
public ActionResult Index()
{
//SomeCode Here
}
public ActionResult CommingFromAnotherDomain(bool Result)
{
if(Result)
{
//How to pass control to upper method??
}
}
CommingFromAnotherDomain 将首先执行,但在检查 if 条件中的参数之后。如何将控制权传递给上层方法 Index()。
而且我还想在 Index 中检查以下结果,以便我可以从 Index 方法中消除一些工作。
提前致谢。