Click here to Skip to main content
15,881,204 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
What does this mean '<cwc:frozengridview'><cwc:frozengridview what="" is="" the="" reason="" mode="hold" xmlns:cwc="#unknown">
Am analyzing some new code. When i run the application am getting error "unknown server tag". Error is due to <cwc:frozengridview'.>IS it any custom control ?
Posted
Comments
Tomas Takac 6-Feb-15 1:42am    
If it's a custom control you should be able to find it in your solution or its references. Look in the XAML file what namespace is cwc mapped to.
Am Gayathri 6-Feb-15 2:39am    
Thanks

I think cwc is TagPrefix

For registering Telerik.Web.UI you can use something like this:
HTML
<![CDATA[<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>]]>


and are helpful to access telerik controls using tagprefix as

SQL
<telerik:RadGrid ID="gridview" AllowMultiRowSelection="True" runat="server"
    AllowFilteringByColumn="true" GridLines="None" CellSpacing="1" CssClass="RadGrid_WebBlue"
    Width="100%" Skin="WebBlue" AllowPaging="true" PageSize="50">
 
Share this answer
 
Comments
Am Gayathri 6-Feb-15 2:39am    
Thanks
That sounds like ASP.NET Real World Controls
https://aspnetrealworldcontr.codeplex.com/[^]

The tag prefix is not registered.

This article will explain,
how to register tag prefixes:
http://weblogs.asp.net/scottgu/tip-trick-how-to-register-user-controls-and-custom-controls-in-web-config[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900