Я продолжаю получать следующую ошибку при запуске проекта в Visual Studio 10. Я получил этот проект от кого-то другого, и мне нужно его расширить, так что я почти уверен, что он как-то связан со значениями маршрута, так каконо пришло с другого компьютера.Однако я не знаю, как это сделать.Раньше это работало, но потом я попытался подключиться к базе данных (создав нового пользователя), и тогда это начало происходить.
Server Error in '/' Application.
Parser Error
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message: Could not load type 'MYAPP.WebUI._Default'.
Source Error:
Line 1: <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="MYAPP.WebUI._Default" %>
Line 2:
Line 3: <%-- Please do not delete this file. It is used to ensure that ASP.NET MVC is activated by IIS when a user makes a "/" request to the server. --%>
Source File: /Default.aspx Line: 1
Файл Default.aspx.cs:
public partial class _Default : Page
{
public void Page_Load(object sender, System.EventArgs e)
{
// Change the current path so that the Routing handler can correctly interpret
// the request, then restore the original path so that the OutputCache module
// can correctly process the response (if caching is enabled).
string originalPath = Request.Path;
HttpContext.Current.RewritePath(Request.ApplicationPath, false);
IHttpHandler httpHandler = new MvcHttpHandler();
httpHandler.ProcessRequest(HttpContext.Current);
HttpContext.Current.RewritePath(originalPath, false);
}
}
, пожалуйста, помогите.