I have a project and I am trying to register a custom server control (there is no .ascx file) on the page. I am currently using

Class Declaration

namespace MyApp.Controls{
    public class CustomControl: WebControl{
        public string Text
        {
            get
            {
                String s = (String)ViewState["Text"];
                return ((s == null) ? String.Empty : s);
            }
            set
            {
                ViewState["Text"] = value;
            }
        }        
        protected override void RenderContents(HtmlTextWriter output)
        {
            output.Write(Text);
        }
    }
}

On my page,

   <%@ Register TagPrefix="myControls" Namespace="MyApp.Controls" %>
   <myControls:CustomControl runat="server" Text="What up!" />

I receive a Parser Error, with the message "Unknown server tag 'myControls:CustomControl'."

What am I doing wrong?

link|improve this question

I think you need assembly too. – Paul McCowat Mar 11 '11 at 17:57
feedback

3 Answers

up vote 4 down vote accepted

Well, if this control is in another class library, or even if it's in the same one, it wouldn't be a bad idea to specify control's assembly in @Register:

<%@ Register TagPrefix="myControls" Namespace="MyApp.Controls" Assembly="MyApp" %>
   <myControls:CustomControl runat="server" Text="What up!" />

Clean and rebuild your solution too in order to verify everything is compiled rightly!

link|improve this answer
Great it works! Thanks. – smartcaveman Mar 11 '11 at 18:07
No problem! Great to know you got it :) – Matías Fidemraizer Mar 11 '11 at 18:08
feedback

You should put your control either under the App_Code folder (in the case if the control not in assembly) or add a reference to assembly where this control is:

<%@ Register TagPrefix="myControls" Namespace="MyApp.Controls"
      Assembly="SomeAssembly" %>

But guessing, your control not under the App_Code folder.

link|improve this answer
Yup, more details here: msdn.microsoft.com/en-us/library/yhzc935f(v=VS.90).aspx – Cosmin Mar 11 '11 at 18:04
I got it to work by adding the Assembly attribute. Placing the code file in App_Code was not necessary – smartcaveman Mar 11 '11 at 18:05
@Cosmin: thanks! – Alex Mar 11 '11 at 19:29
feedback

Add an assembly attribute to your register tag

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.