我們正在使用MVC3,並且正在嘗試在名爲UserSesionManager的Controller中創建一個方法。這種方法是從應用程序不會讀取MVC3中的操作結果方法
@using (Html.BeginForm("GetStatTypesDistribution", "UserSesionManager", FormMethod.Post, new { enctype = "multipart/form-data" }))
堪稱UserSesionmanager控制器,我們有:磨片我添加斷點
Server Error in '/' Application.
The resource cannot be found.
Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
Requested URL: /UserSesionManager/GetStatTypesDistribution
Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.1
而且,:
[HttpPost]
public ActionResult GetStatTypesDistribution(FormCollection form)
然而,當我們把它叫做我們得到這個錯誤它表示源代碼與原始版本不同。我按照右鍵單擊位置的指示,但錯誤仍然存在。
爲什麼會發生這種情況,我們該如何解決這個問題?
非常感謝!
是的,我檢查了這一點,但問題並沒有消失...... – NachoR
奇怪,你在IIS內部運行這個嗎? –
不達林,我在Chrome中運行這一點,我們目前正在使用Microsoft SQL Server 2008 R2 – NachoR