アプリケーションで server.mappath() を使用しました。デバッグ モードでは正常に動作していますが、IIS に公開した後は動作しません。
string filePath=Path.Combine(HttpContext.Server.MapPath("/calendar"),
"MonthCalendarTest.exe");
Process.Start(filePath, Convert.ToString(LoggedInUserKey));
絶対パスで試してみましたが、
"../../calendar/MonthCalendarTest.exe"
"~/calendar/MonthCalendarTest.exe".
どこが間違っているのか教えてください。