作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用优秀的 Magellan navigation framework来自 Paul Stovell .
当您在 Controller 中有此方法时
Public Function Save(ByVal Contact As Contact) As ActionResult
Try
Contact.Save()
Return Index() ''//Call other action result that brings the list of contacts
Catch ex As Exception
Return New CancelResult
End Try
End Function
Index
不创建另一个 View ,而是导航到现有 View (如果存在)? 最佳答案
您可以使用操作和结果过滤器功能完成此操作:
http://www.paulstovell.com/magellan-action-and-view-filters
您可以使用 OnResultExecuted 来跟踪呈现的页面。然后您可以处理 OnResultExecuting 以查看目标页面 - 如果它是导航日志中存在的页面,您可以发出 GoBack/GoForward 命令以导航回该页面。
关于WPF 麦哲伦 : is there a way to navigate to a existing view?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1797307/
我正在使用优秀的 Magellan navigation framework来自 Paul Stovell . 当您在 Controller 中有此方法时 Public Function Save(B
我是一名优秀的程序员,十分优秀!