需要实现的功能就是 一些网站页面的链接。    意思就是把一些相关的链接做在一起  当点击这个EXE的时候就能从里面链接到别的网站页面 !   这样的程序怎么做?  有没有专门的软件工具制作?   用什么c# 可以实现吗、?

解决方案 »

  1.   

    就连接嘛,按钮点击把连接网站的url放进去就可以了
      

  2.   


     System.Diagnostics.Process.Start("IEXPLORE.EXE", @"http://www.baidu.com/");
      

  3.   


    System.Diagnostics.Process.Start(url);
      

  4.   


    //你需要点那个,就在那个的Click事件中写
    private void button1_Click(object sender, EventArgs e)
    {
      
       System.Diagnostics.Process.Start(@"www.sina.com");
    }做好再制作成exe文件