// If you are not sure about the exact resourceName,
// you can list all the embeded resouces via 
// GetType().Assembly.GetManifestResourceNames()
string resourceName = "MyApp.Winter.jpg";
Stream stream = GetType().Assembly.GetManifestResourceStream(resourceName);
            
// show it in the webbrowser
webBrowser1.DocumentStream = stream;

解决方案 »

  1.   

    楼主需要的似乎是:
    string path = Path.Combine(Application.StartupPath, "mypage.html");
    webBrowser1.Navigate(path);如果不是的话,反正就反正就取资源,折腾documenttext或者docuementstream了。
      

  2.   

    自定义一个URL资源协议。
    并且让应用程序来响应这种请求。
    具体的你可以上Baidu和Google查,或者来问我。
    这里写不下。
      

  3.   

    google出来东西还有有点没有看懂  我看都是指出一个连接 然后能激活一个程序。 我要的是返回数据流阿 这个怎么处理阿