How do I get the meta information without using ID field
Ex :
<meta name="date_modified" content="2007-04-27" />
So far the only way i've been able to get the content information is by add and id="date_mod" field in there.
HtmlMeta meta = Page.Header.FindControl("date_mod");
ID in xhtml is no longer supported. Therefore gives errors when checking if there are any xhtml conformity issues.
I've tried using ControlCollections, but they also use ID, and not name.
Page.Header.FindContorl also uses the ID field.
I'm hoping it's something obvious that i've missed.
Thanks for any help with this issue.

