Skip to main content
Home Forums Silverlight Programming Programming with .NET - General Navigate From Silverlight Page To Aspx Page.
1 replies. Latest Post by lingbing on January 5, 2009.
(0)
spiderma...
Member
225 points
282 Posts
01-05-2009 9:28 PM |
Hi, all
I have two projects, and one is silverlight project, the other is asp.net project .
There is one page named SilverlightApplicationTestPage.aspx(with xaml) in my silverlight project.
And there is one page named Default.aspx in my asp.net project .
I want to navigate between SilverlightApplicationTestPage.aspx and Default.aspx.
How can i impelement it?
Both of my Page address are [http://localhost:2270/SilverlightApplicationTestPage.aspx] and
[http://localhost:25042/Default.aspx] .
any suggestions?
Thanks....
lingbing
Contributor
2249 points
406 Posts
01-05-2009 9:47 PM |
Don't use random port, if you restart your website, the port maybe changes. So use special port number and juse a link will help you to redirect to another page. Or javascript window.open("http://localhost:8080/Default.aspx") can help you too. In silverlight, the System.Windows.Browser.HtmlPage.Window.Navigate(Uri) is enough.
Did I catch what you mean exactly?
Regards!