所以这很简单。我有一个调用控制器的视图,它(取决于布尔值)将返回一个新视图。但如果没有,将停留在当前视图上。
我将如何做到这一点?
我当前的控制器代码是这样的:
public class MyController : Controller
{
public ActionResult someView(bool myBool) // is really a string
{
if (myBool) // Is really checking if the string is empty
{
ModelState.AddModelError("message", "This is true");
}
else
{
return View();
}
return null;
}
}
我知道我需要了解更多关于 mvc4 的知识,但请继续玩 ;-D
为我的天鹰船长编辑^^
_Partial 页面代码:(感谢 John H)
@using (Html.BeginForm("someView", "My", FormMethod.Get))
{
@Html.TextBox("text")
<input type="submit" value='send' />
}
但我的问题的真正目标是找到一种方法来回到View
调用它的那个。希望没有Model
你这将是正确的方式^^