从 IIS 浏览时断点未命中

Breakpoint is not hitting when browse from IIS

我已经在 IIS 中部署了我的 MVC 3 应用程序。有什么可能的方法可以调试。因为当我从 IIS 运行 时断点没有命中。

代码:

protected void Application_BeginRequest()
{        
    Request.Cookies["ASP.NET_SessionID"].Secure = true;
}

您部署在服务器(本地)。所以无法调试。

这些是 Visual Studio 中的步骤:

  1. 单击菜单栏中的"Debug"
  2. 点击"Attach to Process"
  3. 选中左下角的 "Show processes from all users" 复选框
  4. Select aspnet_wp.exe、w3p.exe 或 w3wp.exe 来自进程列表
  5. 点击"Attach"