Launch a URL from a WinForms app

前端 未结 1 1786
北荒
北荒 2020-12-30 21:29

I\'ve got a VB.NET WinForms app in which I have the need to refer the user to a web page with documentation/help. I realize the LinkButton would get the trick done, but what

相关标签:
1条回答
  • 2020-12-30 21:56
    System.Diagnostics.Process.Start("http://www.website.com");
    

    should work

    0 讨论(0)
提交回复
热议问题