C# で ASP.NET のページを作成して、exe ファイルを実行しました。以下のコードでボタンとイベントを作成しました。
        ProcessStartInfo info = new ProcessStartInfo(@"C:\inetpub\wwwroot\Share\myfile.exe");
        info.UseShellExecute = false;
        info.RedirectStandardInput = true;
        info.RedirectStandardError = true;
        info.RedirectStandardOutput = true;
        //info.UserName = dialog.User;
        info.UserName = "username";
        string pass = "MY pass";
        System.Security.SecureString secret = new System.Security.SecureString();
        foreach (char c in pass)
            secret.AppendChar(c);
        info.Password = secret;
        Process.Start(info);   
コンパイラから実行したところ、正常に実行されましたが、ローカルホストでプロジェクトを公開したとき、何のアクションもありませんでした。何が問題ですか?