I have an ASP.NET web form with a button on it. When I click the button I want to open a UNC path. I have created the event handler and placed the following code in it:
Process.Start(new ProcessStartInfo
{
FileName = "\\\\MyServer\\MyShare\\",
UseShellExecute = true
});
When I click the button, from my local machine, I receive the following error:
The specified network password is not correct
When I upload the form and click the button from the test web server, I receive this error:
The parameter is incorrect
Any ideas folks?