This is a migrated thread and some comments may be shown as answers.

Form Decorator works on some pages and not others

2 Answers 49 Views
FormDecorator
This is a migrated thread and some comments may be shown as answers.
David
Top achievements
Rank 1
David asked on 26 Aug 2010, 07:26 PM
I am currently installing Telerik controls on our present asp .net application and stumbled upon the "formdecorator" -> more specifically <telerik:RadFormDecorator ID="FormDecorator1" runat="server" DecoratedControls="all"></telerik:RadFormDecorator>
 and therefore I have been installing this on our application .aspx pages.  Most of the time it works perfectly and formats all our textboxs, radiobuttons, etc.  However I have found that sometimes this doesn't work on the pages and receive "Unknown server tag 'telerik:radformdecorator'.
" errors.  My question is why this might work on some pages and not others.  Does it have to do with master pages? Or something else in general.  If you need more specifics please let me know.

2 Answers, 1 is accepted

Sort by
0
Georgi Tunev
Telerik team
answered on 27 Aug 2010, 08:02 AM
Hello David,

Make sure that there is a reference to the corresponding assembly on the page
<%@ Register assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" tagprefix="telerik" %>
or in your web.config file
.....
<pages>
            <controls>
                <add tagPrefix="telerik" namespace="Telerik.Web.UI" assembly="Telerik.Web.UI" />
            </controls>
        </pages>
.....


If you still experience problems after that, please send us your project or a sample one where these problems can be reproduced so we can investigate further.


All the best,
Georgi Tunev
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
David
Top achievements
Rank 1
answered on 27 Aug 2010, 04:16 PM
Thanks...that worked perfectly.
Tags
FormDecorator
Asked by
David
Top achievements
Rank 1
Answers by
Georgi Tunev
Telerik team
David
Top achievements
Rank 1
Share this question
or