从 silverlight xaml 强制重新加载 aspx 页面

发布于 2024-12-11 00:12:08 字数 455 浏览 0 评论 0原文

我有一个从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

杀手六號 2024-12-18 00:12:08

尝试使用:

HtmlPage.Document.Submit()

如果您希望重新加载的 .aspx 目标页面是当前页面,它应该可以工作。

Try using:

HtmlPage.Document.Submit()

It should work if your .aspx target page you wish to reload is the current page.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文