How do I get the meta information without using ID field

I've been trying to find a way to get the meta tag information with having to use the ID="blah" field. I need to be able to locate an element with the name 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.
[816 byte] By [Avenger007] at [2007-11-20 7:26:22]