I have to download an Excel file from the following URL:
https://abcdef/testCopy.xlsx
I can load it into Internet Explorer using the following command:
Process.Start("IExplore.exe", "https://abcdef/testCopy.xlsx");
This works fine, but the server requests a username and password before the file will download a file.
As an added convenience I wish to also supply the server username and password if I may.
Is this possible, and if so how is it done?