使用 mvvm 的 Silverlight Response.Redirect()
我正在开发一个有两种用户(用户和管理员)的项目。现在,当我登录时,我想将用户重定向到 Views/UserHomePage.xaml,将管理员重定向到 Views/AdminHomePage.xaml。
那么 ASP.NET for Silverlight 的 Response.Redirect() 是什么?我在我的 viewModel 中完成了所有导航,这样你就知道了:)
Thx
I'm working on a project where there are 2 kinds of users(user and admin). Now when I log in I want to redirect the users to Views/UserHomePage.xaml and the admins to Views/AdminHomePage.xaml.
So what is the Response.Redirect() from ASP.NET for Silverlight? I do all the navigation in my viewModel just so you know :)
Thx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要 Silverlight 导航框架。
以下是 MSDN 和 < a href="http://www.silverlightshow.net/items/The-Silverlight-3-Navigation-Framework.aspx" rel="nofollow">www.silverlightshow.net。
您必须使用这样的代码
this.Frame.Navigate(new Uri(goToPage, UriKind.Relative));
You need Silverlight Navigation Framework.
Here are posts on MSDN and www.silverlightshow.net.
You must use code like this
this.Frame.Navigate(new Uri(goToPage, UriKind.Relative));