添加自定義控制我想在我的網站自定義的控制(注意:不是Web應用程序)asp.net網站中
以下是代碼
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.ComponentModel;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace AnkitControls
{
/// <summary>
/// Summary description for CustomTreeView
/// </summary>
public class CustomTreeViewControl : WebControl
{
}
}
的Default.aspx:
<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true"
CodeFile="Default.aspx.cs" Inherits="_Default" %>
<%@ Register Assembly="AnkitControls" Namespace="AnkitControls" TagPrefix="CustomCtrl" %>
<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
</asp:Content>
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
<h2>
Welcome to ASP.NET!
</h2>
<p>
To learn more about ASP.NET visit <a href="http://www.asp.net" title="ASP.NET Website">www.asp.net</a>.
</p>
<p>
You can also find <a href="http://go.microsoft.com/fwlink/?LinkID=152368&clcid=0x409"
title="MSDN ASP.NET Docs">documentation on ASP.NET at MSDN</a>.
</p>
</asp:Content>
當我編譯的網站,它給我錯誤的程序集。
錯誤=「類型或命名空間名稱AnkitControls'不存在命名空間存在‘AnkitControls’(是否缺少程序集引用?)」
在您的web.config中引用了'AnkitControls'嗎? –
CustomTreeViewControl.cs文件是否放置在本網站的App_Code文件夾中或另一個項目中? –
這是CustomControls文件夾中的網站沒有在App_Code文件 – Ankit