Problem med simpel user control
Jeg har lavet en simpel user control, men den virker ikke.inhold.ascx:
<%@ Control %>
<br />
<br />
<hr />
<p align="center">testing :-)</p>
NewFile.aspx:
<%@ Page Language="C#" %>
<%@ Register tagprefix="tag" TagName"name" Src="indhold.ascx" %>
<script runat="server">
// Insert page code here
//
</script>
<html>
<head>
</head>
<body>
<form runat="server">
<!-- Insert content here -->
</form>
<br />
<tag:name runat="server" />
</body>
</html>
Der kommer fejlen:
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: The server block is not well formed.
Source Error:
Line 1: <%@ Page Language="C#" %>
Line 2: <%@ Register tagprefix="tag" TagName"name" Src="indhold.ascx" %>
Line 3: <script runat="server">
Line 4:
Source File: c:\inetpub\wwwroot\inc\newfile.aspx Line: 2
