每次启动ASP时都会出现IIS错误.. NET Core MVC应用

本文关键字:错误 IIS NET Core 应用 MVC 启动 ASP | 更新日期: 2023-09-27 18:01:55

我有一个问题,使用新的ASP。. NET Core MVC。我做一个空项目或使用web应用程序模板。每次我在Visual Studio 2015文件浏览器中保存对任何文件的更改,或者每次我启动应用程序时(无论是否调试),都会弹出一个IIS错误:

"应用程序中出现未处理的异常:目录' users' COMPUTERNAME=ZENBOOK无效".

这个路径可能是什么?从来没有改变过任何可能触发这种事情的设置。

错误的其余部分:

************** Exception Text **************
System.ArgumentException: The directory name C:'Users'vouCOMPUTERNAME=ZENBOOK' is invalid.
   at System.IO.FileSystemWatcher.set_Path(String value)
   at Microsoft.IisExpress.SysTray.TrayAppHiddenForm.TrayAppHiddenForm_Load(Object sender, EventArgs e)
   at System.Windows.Forms.Form.OnLoad(EventArgs e)
   at System.Windows.Forms.Form.OnCreateControl()
   at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
   at System.Windows.Forms.Control.CreateControl()
   at System.Windows.Forms.Control.WmShowWindow(Message& m)
   at System.Windows.Forms.Control.WndProc(Message& m)
   at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
   at System.Windows.Forms.Form.WmShowWindow(Message& m)
   at System.Windows.Forms.Form.WndProc(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
   at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)

站点在任何刷新下都可以很好地呈现。但是这个错误总是出现在两台不同的机器上。这从来没有发生在MVC 4项目,虽然…然而,我的朋友在使用ASP时没有任何类似的问题。. NET Core MVC.

我觉得这可能与环境变量有关,但我检查了一下,它们似乎很好。欢迎提出任何意见。

每次启动ASP时都会出现IIS错误.. NET Core MVC应用

"Zenbook"用户名对你有意义吗?是你吗?

另外,堆栈跟踪描述了执行Windows窗体代码时出现的问题。你有什么理由要用这些东西吗?检查你的设计,因为它没有意义,至少对于一个不知道你的应用程序做什么的人来说。