Is it possible to write 'value-less' attributes to WebControl types?

i.e. going from

1 = var div = new WebControl(HtmlTextWriterTag.Div);

2 = ???

3 = Rendered output: <div itemscope></div>

link|improve this question

74% accept rate
feedback

4 Answers

up vote 1 down vote accepted

You can created control (E.g. SomeMicroDataWebControl) derived from WebControl and overrride method "Render". In "Render" you define how your control will look like on page. Then add this class to a page or another control.

link|improve this answer
Slightly better: public class MicrodataControl : WebControl { public MicrodataControl(string tag) : base(tag) { }; } as WebControl has a protected property 'tag' so you must derive first. – maxp Jun 27 '11 at 15:54
feedback

You can create a System.Web.UI.HtmlControls.HtmlGenericControl control and set anything you like within it. W3C though recommends setting a data or role attributes, so you'd have <div role-scope='item'></div>

link|improve this answer
feedback

If you're using ASP.NET MVC take a look at my blog post:

ASP.NET MVC: Add HTML5 Microdata to your applications using Metadata Providers

Hope it helps!

link|improve this answer
feedback

Take a look at ASP.NET control adapters. http://msdn.microsoft.com/en-us/magazine/cc163543.aspx

link|improve this answer
Not sure what the downvote is for? What if you need to do this for an OOTB control? – unclepaul84 Jun 27 '11 at 16:03
feedback

Your Answer

 
or
required, but never shown

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