vote up 0 vote down star
1

I had a VS2008 project that was showing this warning, and I couldn't find a solution anywhere - perhaps my google-fu is weak.

In any case, the apparent solution to this is to make sure that the TagName is the name of control class.

So for my example, the following displayed the warning:

<%@ Register Src="~/path/to/Control.ascx" TagName="tagName" TagPrefix="tagprefix" %>

<tagprefix:tagName runat="server" id="controlID" />

But changing it to:

<%@ Register Src="~/path/to/Control.ascx" TagName="Control" TagPrefix="tagprefix" %>

<tagprefix:Control runat="server" id="controlID" />

fixes it.

YMMV.

flag

44% accept rate

2 Answers

vote up 0 vote down

This sounds like a classic re-build your solution and "close and re-open Visual Studio" problem.

It's possible it may also be related to a similar problem I had which I answered at http://stackoverflow.com/questions/1474716/resolving-validation-element-xxxx-is-not-supported-warning-in-visual-stud.

link|flag
vote up 0 vote down

YES!! Thank you so much. This error seems to come up every once in awhile for me and I can never figure it out. After reading your solution I copied and pasted the name from the class itself into the tagname attribute and it worked. I'm not sure if that forced a re-build of the designer file, or if I had a typo when I originally typed it but doing this fixed my bug. Thanks!

link|flag

Your Answer

Get an OpenID
or

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