I'd like to redirect the user to a directory on a file server using its UNC path. I've tried using something like the following but I just get a 404 error.
Response.Redirect(@"file:\\fileserver\data\");
What's the correct syntax to make this work?