我試圖將我的網站發佈到Intranet文件服務器,但由於某些未知原因,應用程序的一部分似乎引用了舊版本的類對象。類初始化程序拋出一個錯誤,指出無法找到存儲過程。我知道這是舊代碼,因爲該存儲過程不再存在。Stacktrace參考中的錯誤舊代碼
錯誤:
Could not find stored procedure 'stp_EMS_BM_EmployeeMovements'. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Data.SqlClient.SqlException: Could not find stored procedure 'stp_EMS_BM_EmployeeMovements'.
Web應用程序運行完全在我的本地機器上。我目前正在使用Visual Studio 2015 Enterprise發佈到文件服務器。
我手動刪除了文件服務器上的所有文件,重建併發布了多次項目。任何關於下一步嘗試的建議都會非常有幫助。
檢查您的DB連接字符串。然後去看那個數據庫,看看SP是否在那裏。 – PmanAce