webBrowser1.Url = new System.Uri("http://qun.qq.com/air/#search/cnum/0/st/0/c1/0/c2/0/c3/0/pg/1/tx/333", System.UriKind.Absolute);
后在webBrowser1.Url = new System.Uri("http://www.google.cn/", System.UriKind.Absolute);webBrowser1没有反应,webBrowser1.Navigate(url);也不行
有兴趣的朋友可以试试,只要是打开了http://qun.qq.com/air/#这个网址,这个控件就不能加载新网址了
有朋友知道怎么解决吗,真的很郁闷.要是先在webBrowser1打开http://www.google.cn/ 就可以在打开http://qun.qq.com/air/#search网址
要是先在webBrowser1打开http://qun.qq.com/air/#search 那webBrowser1里打开任何网址都没反应

解决方案 »

  1.   

    我用的:AxSHDocVw.AxWebBrowser
    调用它的NAVIGATE方法
    Navigate( _url ,ref oZero ,ref oMissing ,ref oMissing ,ref oMissing );
      

  2.   


    oZero oMissing 这些是什么
      

  3.   

    禁用UBB   内容存入剪贴板
      

  4.   


            private void button1_Click(object sender, EventArgs e)
            {
                webBrowser1.Url = new System.Uri("http://qun.qq.com/air/#search/cnum/0/st/0/c1/0/c2/0/c3/0/pg/1/tx/333", System.UriKind.Absolute);
            }        private void button2_Click(object sender, EventArgs e)
            {
                webBrowser1.Url = new System.Uri("http://www.google.cn/", System.UriKind.Absolute);
            }
    两个页面都可以出现
      

  5.   


    哦,把("http://www.google.cn/"换成http://qun.qq.com/air/#search/cnum/0/st就不行了
      

  6.   

    我直接加载谷歌算了,webBrowser1_DocumentCompleted里判断是不是谷歌,是就在换需要的网址,呵呵,解决问题了就 行.谢谢各位