我在我的应用程序中使用了 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".
请让我知道我哪里出错了。