Hi, i am developing a small program which as a windows form. On this form, i want to put a link, and when user click the link, a seperate IE browser will be open with post data.
Original, i used system.diagnostics.process.start(), however, i can not post data through this kind of call. And i searched the web, some guy suggested to use "Microsoft web browser control", however, this need to add this control in my form,and display the explorer in the form, but i want a seperate IE opened. And i saw in VB there is a method as "CreateObject("InternetExplorer.Application")", but i can not find how to use it in csharp.
So, do you have any suggestions on how to implement?