I want to set up an ASP.NET custom control such that it has a custom name, specifically, with a hyphen within it, so it might look like this in markup:
<rp:do-something runat='server' id='doSomething1' />
I don’t mind if this syntax requires setting up a tag mapping in web.config or something to that effect, but the tagMapping element doesn’t quite match up for what I’d like to do.
I wouldn’t think this is possible due to the restrictions on class namings. I don’t believe you can refer to a control class in markup without refering to it by name
Is there a specific reason you need the hyphen?