从 silverlight xaml 强制重新加载 aspx 页面
我有一个从 asp .net 项目调用的 Silverlight 应用程序。我在 silverlight 项目中有一个链接,可以将用户带回 asp.net 项目。我不希望这种情况发生在新窗口中。
目前,它使我返回到缓存的页面。我想强制重新加载它。
当前链接的 onclick 事件调用以下代码:
HtmlPage.Window.Navigate(new Uri("http://ipaddress/menu.aspx"));
关于如何强制 menu.aspx 在调用时重新加载有什么建议吗?
我找到了一个解决方案..
解决方案
HtmlPage.Window.Navigate(new Uri("http://ipaddress/menu.aspx?"));
这会导致页面被重新加载......
I've a Silverlight application that is called from a asp .net project. I have a link in the silverlight project that brings the user back to the asp.net project. I do not want this to happen in a new window.
At the moment, it returns me to the cached page. I want to force a reload of it.
Currently onclick event of the link invokes the following code:
HtmlPage.Window.Navigate(new Uri("http://ipaddress/menu.aspx"));
Any suggestions on how I could enforce menu.aspx to reload when called?
I found a solution..
SOLUTION
HtmlPage.Window.Navigate(new Uri("http://ipaddress/menu.aspx?"));
This results in the page being reloaded....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用:
如果您希望重新加载的 .aspx 目标页面是当前页面,它应该可以工作。
Try using:
It should work if your .aspx target page you wish to reload is the current page.