"There are controls on the page that require a homepage link, but none are specified."

I get this output: enter image description here

although my page contains MasterPageFile="~/Site1.Master"

Here is my page source code:

 <%@ Language="C#" MasterPageFile="~/Site1.Master" AutoEventWireup="true" CodeBehind="WebForm2.aspx.cs" Inherits="Projekt.NET.WebForm2" %> <asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server"> <title>gowno</title> </asp:Content> <asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server"> hahahahahahaa </asp:Content> 
+4
source share
1 answer

as Self-Anserwed by "ProfK"

<%@ Page Language="C#" 'directive missing word Page'

Homepage error in new MVC project

+1
source

All Articles