I need to open a webpage I created in php, in my C # application.
            Asked
            
        
        
            Active
            
        
            Viewed 260 times
        
    1 Answers
0
            
            
        This is a very basic example using C#, I hope this can help you.
If you want to open a link in your default browser, you can add this simple code:
Process.Start("http://YourURL");
If you want to open your link in another browser, you can use this code:
System.Diagnostics.Process.Start("firefox.exe", "http://YourURL");
And you can visit these posts:
 
    
    
        Community
        
- 1
- 1
 
    
    
        Orlando Herrera
        
- 3,481
- 1
- 34
- 44
- 
                    Thank you for the answer, but I want it to open inside of my GTK Gui – rodolfo domingos Apr 18 '16 at 19:22
