Hello,
I'm currently creating a custom asp.net skin file to create a common look and feel for web applications my department works on, I tried to add the Infragistics tag igtbl:UltraWebGrid to my skin, and when I run the site I get the following error : Parser Error Message: Unknown server tag 'igtbl:UltraWebGrid'.
I was wondering how I go about adding the UltraWebGrid to my skin, so that it inherits our look & feel?
Thanks,
Sean
You must add the grid tag in the .skin file like below:
<%@ Register TagPrefix="igtbl" Namespace="Infragistics.WebUI.UltraWebGrid" Assembly="Infragistics2.WebUI.UltraWebGrid.v7.2, Version=7.2.20072.61, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" %>
(copy the tag from the page you are using one webgrid)
Hope it helps
Johni Ecco
That does indeed. Thanks, I'm still kinda new to asp.net development