这是我第一次尝试构建ASP.NET服务器控件。编写控制代码很简单,但我遇到了试图控制网页的障碍。
我在一个项目中构建了控件,并在另一个项目中引用了它。在第二个项目中,我将控件放入工具箱并在页面上拖放控件。我可以毫无错误地编译Web项目,但当我浏览到该页面时,我收到此错误:
分析程序错误消息:未知服务器标记'cc1:StandardControl1'。
做一些环顾四周我看到其他人出于各种原因出现此问题,但似乎没有一个适用于我的情况。一种解决方案是将程序集添加到寄存器标记,但这不是我的页面的问题:
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="another.aspx.vb" Inherits="Educate.another" %>
<%@ Register Assembly="ServerControlSandbox" Namespace="ServerControlSandbox" TagPrefix="cc1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<cc1:StandardControl1 runat="server">
</cc1:StandardControl1>
</div>
</form>
</body>
</html>
另一个解决方案是将其添加到web.config,再次使用assembly属性。但是在我的web.config中,我仍然得到错误:
<controls>
<add tagPrefix="cc1" namespace="ServerControlSandbox" assembly="ServerControlSandbox"/>
<add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
</controls>
我认为有一些简单的事情我会失踪,但我认为没有错,从我看过的例子来看。有没有人有任何想法?感谢。
此外,这是控制代码:
namespace ServerControlSandbox
{
[DefaultProperty("Text")]
[ToolboxData("<{0}:StandardControl1 runat=server></{0}:StandardControl1>")]
public class StandardControl : WebControl
{
[Bindable(true)]
[Category("Appearance")]
[DefaultValue("")]
[Localizable(true)]
public string Text
{
get
{
String s = (String)ViewState["Text"];
return ((s == null) ? "[" + this.ID + "]" : s);
}
set
{
ViewState["Text"] = value;
}
}
protected override void RenderContents(HtmlTextWriter output)
{
output.Write(Text);
string block = "<p>Here is some text.</p>";
output.Write(block);
}
}
}
答案 0 :(得分:6)
应该是:
<cc1:StandardControl ID="scSomething" runat="server">
</cc1:StandardControl>