Guys i am making c# windows application and i want to open any explorer (IE, FireFox, Chrome etc) with a website showing the login page asking me to enter my user name and password.
i am doing.
Process p =new Process();
ProcessStartInfo Sinfo=new ProcessStartInfo();
Sinfo.FileName="chrome.exe" // or Sinfo.Filename="IExplorer.exe";
Sinfo.agruments="www.mail.yahoo.com";
p.startinfo=Sinfo;
p.start();
i am not getting how to send my email/username and password to specific website to login automatically?
Passing the user name and password in the query string will only work if the target web site was programmed to accept those values in a query string.
Here is an example: link