如何将现有视图附加到操作?我的意思是,我已经将这个视图附加到了一个动作,但我想要附加到第二个动作。
示例:我有一个名为 Index 的操作和一个视图,同名,附加到它,右键单击,添加视图...,但是现在,如何附加到第二个?假设有一个Action叫Index2,如何实现呢?
这是代码:
//this Action has Index View attached
public ActionResult Index(int? EntryId)
{
Entry entry = Entry.GetNext(EntryId);
return View(entry);
}
//I want this view Attached to the Index view...
[HttpPost]
public ActionResult Rewind(Entry entry)//...so the model will not be null
{
//Code here
return View(entry);
}
我用谷歌搜索并找不到正确的答案......这可能吗?