Search results for query: *

  1. H

    Question Process.Start works in test, not when published

    In Visual Studio 2012, I am developing a web application that needs to open Word or PDF documents. In testing, this code works well but when the web page is published, it gives the error message: The system cannot find the file specified. Dim OpenDocument As New ProcessStartInfo...
  2. H

    Question Process.Start works in test, does not work on intranet

    Thanks, that is helpful. I have decided not to do it that way after all, as it isn't going to work. I want to allow users to browse files in a given folder, so instead of opening Windows Explorer, I have added in a list box that displays the files in the folder.
  3. H

    Question Process.Start works in test, does not work on intranet

    I have a line of code: System.Diagnostics.Process.Start("explorer.exe", DocumentFolder) When I test it, it open Windows Explorer at the specified folder. But when I put the web application on to our intranet server, it does nothing. Is there a setting in IIS that I can change to...
Back
Top