Question

I'm implementing microdata on site built in C#. The desired wrapper div for a product should look like this:

<div itemscope itemtype="http://data-vocabulary.org/Product">

It's easy to add the itemtype attribute like below

domElement.Attributes["itemtype"] = "http://data-vocabulary.org/Product";

But I have no idea how can I add a single word attribute like itemscope.

Was it helpful?

Solution

Generally speaking, attributes tend to require values with many libraries. Most people will get around this by writing something like itemscope=true or itemscope="". EDIT: Reworded when I found that some XML implementations do use blank attributes without any issues.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top