B
beanz80
I was recently tasked with creating a .NET application that opens the
default browser to a specific webpage with the user name and password
populated. I have found the following code that uses C# to open IE
shown below
System.Diagnostics.Process process = new
System.Diagnostics.Process();
process.StartInfo.FileName = "http://mywebsite.com";
process.Start();
Is there a way to pass text to the username and password to the
browser before running process.Start() or should I attempt to run a VB
Script after the browser has opened?
Thanks
default browser to a specific webpage with the user name and password
populated. I have found the following code that uses C# to open IE
shown below
System.Diagnostics.Process process = new
System.Diagnostics.Process();
process.StartInfo.FileName = "http://mywebsite.com";
process.Start();
Is there a way to pass text to the username and password to the
browser before running process.Start() or should I attempt to run a VB
Script after the browser has opened?
Thanks