.aspx文件中不允许使用Control指令

时间:2015-12-07 21:01:11

标签: asp.net user-controls

我正在尝试关注Microsoft instructions on how to create a user control

我的目标是转换.aspx文件

The last three v's were 44, 27, 17

我尝试了以下

<%@ Page Language="C#" Title="Customize the queue UI" %>

<%@ Register TagPrefix="CuteWebUI" Namespace="CuteWebUI" Assembly="CuteWebUI.AjaxUploader" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
</head>
<body>
    <form id="Form1" runat="server">
        <CuteWebUI:Uploader ID="uploader1" runat="server">
        </CuteWebUI:Uploader>
    </form>
</body>
</html>

但是我收到错误“.aspx文件中不允许使用Control指令”

我哪里出错?

0 个答案:

没有答案