当前位置: 代码迷 >> Web开发 >> System.Security.SecurityException : Security error求解释解决思路
  详细解决方案

System.Security.SecurityException : Security error求解释解决思路

热度:715   发布时间:2012-03-16 16:34:56.0
System.Security.SecurityException : Security error求解释
这个 ‘安全性问题’ 着实让我比较纠结,自己也在网上找了一些资料。但是多个方法都试过,却是没有效果。
代码如下:

private void Search_Click(object sender, RoutedEventArgs e)
  {
  string topic = this.txtSearchKey.Text;
  string diggUrl = string.Format("http://services.digg.com/stories/topic/{0}?count=20&appkey=http%3A%2F%2Fscottgu.com", topic);

  WebClient diggService = new WebClient();
  diggService.DownloadStringCompleted += (send,ex) =>
  {
  if (ex.Error == null)
  {
  DisplayStories(ex.Result);
  }
  else
  {
  MessageBox.Show("No Stories found on that topic", "Web Service Message", MessageBoxButton.OK);
  }
  };

  try
  {
  diggService.DownloadStringAsync(new Uri(diggUrl));
  }
  catch (Exception ws)
  {
  MessageBox.Show(ws.Message.ToString(), "Web Service error!", MessageBoxButton.OK);
  }
  }

网上的方法一个来自http://support.microsoft.com/kb/320268/zh-cn,另一个就是http://iask.sina.com.cn/b/18724422.html(修改web.config文件)。但是两个都没有效果,无奈。希望哪位给小弟一个解决方案,当然能跟我讲解下原因就更是不胜感激了

------解决方案--------------------
顶一下,10分!
------解决方案--------------------
楼主我不会帮不到你,但是我可以帮你顶一下,你给点分呗,而且我觉得你没发对板块
------解决方案--------------------
先看这个如何提问
------解决方案--------------------
技术活。
  相关解决方案