Директивы Страницы Наследует
У меня много проблем с началом работы сегодня... я продолжаю получать
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 'Webapp5.landing'.
Source Error:
Line 1: <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="landing.aspx.cs" Inherits="Webapp5.landing" %>
Line 2:
Line 3: <!DOCTYPE html>
вот мой код позади....
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace Webapp5
{
public partial class landing : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
}
и вот моя страница...
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="landing.aspx.cs" Inherits="Webapp5.landing" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
</form>
</body>
</html>
я знаю, что здесь чего-то не хватает.... но я просто не могу заставить это работать? какие-либо идеи о том, как заставить эту страницу работать?