为什么网络客户端不显示网页
本文关键字:显示 网页 客户端 网络 为什么 | 更新日期: 2023-09-27 18:31:22
下面的代码可以编译,但不显示网站的文字或照片。我只想运行一个涉及与 Silverlight 进行 HTTP 通信的程序。知道为什么我没有显示网站吗?我只是在文本块中显示"发生错误"
namespace SilverlightApplication4
{
public partial class MainPage : UserControl
{
string baseUri = "http://yahoo.com";
WebClient client = new WebClient();
public MainPage()
{
InitializeComponent();
client.DownloadStringCompleted += new DownloadStringCompletedEventHandler(client_DownloadStringCompleted);
}
private void Button1_Click(object sender, RoutedEventArgs e)
{
client.DownloadStringAsync(new Uri(baseUri));
}
void client_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
{
if (e.Error == null)
textBox.Text = "Using WebClient: "+ e.Result;
else
{
textBox.Text = e.Error.Message;
textBlock.Text = "error occurred";
}
}
}
}
这是一个
跨域问题,其中 xml 不存在服务器,因此您收到异常
这是一个链接,我在其中找到了您可以解决的问题
安全异常