Jag kör ASP.NET i Visual Studio.NET Lägg till Runat="server" till din kontroll:Problem med användarkontroller
När jag ska köra sidan visas följande felmeddelande.
Parser Error Message: The server block is not well formed.
Source Error:
Line 1: <code><%@ Register TagPrefix="LOGIN" TagName"Login" src="WebUserControl1.ascx"%></code>
Line 2: <code><%@ Page Language="vb" AutoEventWireup="false" Codebehind="WebForm1.aspx.vb" Inherits="Användakontroller.WebForm1"%></code>
På sidan WebForm1.aspx finns följande kod:
<code>
<%@ Register TagPrefix="LOGIN" TagName"Login" src="WebUserControl1.ascx"%>
<%@ Page Language="vb" AutoEventWireup="false" Codebehind="WebForm1.aspx.vb" Inherits="Användakontroller.WebForm1"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<title>WebForm1</title>
<meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR">
<meta content="Visual Basic .NET 7.1" name="CODE_LANGUAGE">
<meta content="JavaScript" name="vs_defaultClientScript">
<meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
</HEAD>
<body MS_POSITIONING="GridLayout">
<form id="Form1" method="post" runat="server">
<LOGIN:Login id="loginform"></LOGIN>
</form>
</body>
</HTML>
</code>
På sidan WebUserControl1.ascx finns denna kod:
<code>
<%@ Control Language="vb" AutoEventWireup="false" Codebehind="WebUserControl1.ascx.vb" Inherits="Användakontroller.WebUserControl1" TargetSchema="http://schemas.microsoft.com/intellisense/ie5" %>
<TABLE id="Table1" style="BORDER-RIGHT: blue thin solid; BORDER-TOP: blue thin solid; Z-INDEX: 101; LEFT: 24px; BORDER-LEFT: blue thin solid; WIDTH: 248px; BORDER-BOTTOM: blue thin solid; POSITION: absolute; TOP: 24px; HEIGHT: 85px; background-color:<%=color%>"
cellSpacing="5" cellPadding="0" width="248" border="0">
<TR>
<TD style="WIDTH: 70px">Användarnamn:</TD>
<TD><asp:textbox id="txtAnvnamn" runat="server"></asp:textbox></TD>
</TR>
<TR>
<TD style="WIDTH: 70px">Lösenord:</TD>
<TD><asp:textbox id="txtLosen" runat="server"></asp:textbox></TD>
</TR>
<TR>
<TD style="WIDTH: 70px"></TD>
<TD align="right"><asp:button id="cmdLoggain" runat="server" Text="Logga in"></asp:button></TD>
</TR>
</TABLE>
<p>
<asp:Label ID="lblMessage" Runat="server"></asp:Label>
</p>
</code>
Vad kan vara fel?Sv: Problem med användarkontroller
<LOGIN:Login id="loginform" runat="server"></LOGIN>
/Fredrik Normén NSQUARED2