首页 > 开发 > 综合 > 正文

用C#实现WEB浏览器

2024-07-21 02:18:43
字体:
来源:转载
供稿:网友
废话少说,看代码。。。

private axshdocvw.axwebbrowser axwebbrowser1;
private system.windows.forms.button button1;
private system.windows.forms.label label1;
private axshockwaveflashobjects.axshockwaveflash axshockwaveflash1;

system.threading.thread thread1=new system.threading.thread(new system.threading.threadstart(thread_webbrowse));
thread1.start();

private void thread_webbrowse()
{
//这是一个try的用法,遇上错误抛出异常
try
{
object n=null;
this.axwebbrowser1.navigate("www.sina.com.cn",ref n,ref n,ref n,ref n);
}
catch(exception ex)
{
this.label_output.text=ex.tostring();
}
}


  • 本文来源于网页设计爱好者web开发社区http://www.html.org.cn收集整理,欢迎访问。
  • 发表评论 共有条评论
    用户名: 密码:
    验证码: 匿名发表