hello sir,
i have a issue with windows form , i want to know how to open webpage inside a popup window instead normal window from windows form page after clicking on submit button . I can open a page from windows form but i want to know how to open a popup browser window
You want to open a Web browser from Windows Application then you need to start the process of Internet explorer.
Like this
System.Diagnostics.Process.Start(@"C:\Program Files\Internet Explorer\iexplore.exe", "http://www.w3schools.com/");
Thank You.
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.