register tagfix problem in asp.net
-
hi why does my application does not support the below tag? Whenever I create register tagprefix to some data it does not gets displayed in the design view gives me error control. <%@ Register TagPrefix="mbrsc" Namespace="Repeater" Assembly="Repeater.RowSelectorColumn" %> Can anyone give some answer for it and how i can resolve it I am using asp.net with C# kal13na13 -- modified at 7:01 Friday 16th December, 2005
-
hi why does my application does not support the below tag? Whenever I create register tagprefix to some data it does not gets displayed in the design view gives me error control. <%@ Register TagPrefix="mbrsc" Namespace="Repeater" Assembly="Repeater.RowSelectorColumn" %> Can anyone give some answer for it and how i can resolve it I am using asp.net with C# kal13na13 -- modified at 7:01 Friday 16th December, 2005
-
hi why does my application does not support the below tag? Whenever I create register tagprefix to some data it does not gets displayed in the design view gives me error control. <%@ Register TagPrefix="mbrsc" Namespace="Repeater" Assembly="Repeater.RowSelectorColumn" %> Can anyone give some answer for it and how i can resolve it I am using asp.net with C# kal13na13 -- modified at 7:01 Friday 16th December, 2005
There are a couple of things that you may try: + Check the values of the Namespace and Assembly attributes. Btw, the
Repeater
is not a good choice for the namespace since it's identical to theRepeater
control. + Make sure you use the tag prefix specified in the TagPrefix attribute to declare the custom control in the web page. + Try to rebuild the project. + Close the web page and open it again. + Ensure that your custom control is implemented properly.