Silverlight怎样连接到指定“aspx页面”
在asp.net中<A href="../ElecFromGoogle.aspx?ID=310000Fb001 ">能耗监管信息</A>,这是一个超链接。
但在Silverlight的方法中,如下
private void SiPingTuShuGuan_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
//问题:这里怎样跳转到“../ElecFromGoogle.aspx?ID=310000Fb001”???
}
------解决方案--------------------
HtmlWindow html = new HtmlWindow();
Uri uri = new Uri("xxxx.aspx");
html.Navigate(uri);
------解决方案--------------------
不好意思
应该是这样
HtmlWindow html = HtmlPage.Window;
Uri uri = new Uri("http://www.baidu.com");
html.Navigate(uri);