tags:

views:

65

answers:

2

How to redirecting from win forms to web forms ?

+2  A: 

System.Diagnostics.Process.Start("pagelink")

joe
+2  A: 

Here's my source.

using System.Diagnostics;

Process.Start("http://www.google.com");
280Z28