joshisumitnet -1 Light Poster

Hi, All Friends

Here I am showing you how to Redirect from Window Application to Web Application from VB.NET or C#.NET.

The below code is from my VB.NET application. Just copy and paste the code into your application and you will see the magic.

Private Sub sitelink_LinkClicked(ByVal sender As System.Object, ByVal e As System.Windows.Forms.LinkLabelLinkClickedEventArgs) Handles sitelink.LinkClicked
        Dim openBrowser As New System.Diagnostics.Process
        openBrowser.EnableRaisingEvents = False
        openBrowser.StartInfo.FileName = "iexplore"
        openBrowser.StartInfo.Arguments = http://www.themacrosoft.com"
        openBrowser.Start()
    End Sub

The above code help is retrieved from the below link. But I think that I should have to share with you all guys.