advertisement
Premier Club Log In/Registration
  Include Code  Search Tips
TODAY'S HEADLINES  |   ARTICLE ARCHIVE  |   SKILLBUILDING  |   TIP BANK  |   SOURCEBANK  |   FORUMS  |   NEWSLETTERS
Browse DevX
Partners & Affiliates
advertisement
advertisement
Tip of the Day
Average Rating: 2.8/5 | Rate this item | 11 users have rated this item.
Expertise: Intermediate
Language: .NET
October 14, 2009
Generate Metatags for ASP.NET Pages Dynamically

You're probably already aware of the benefits of metatags, which provide metadata about an HTML document. Metatags aren't rendered in the browser, but search engines use them to categorize web pages.

To add metatags dynamically, ASP.NET provides a handy class called HtmlMeta, from the System.Web.UI.HtmlControls namespace. Here's some sample C# code that shows how to add a meta tag to an ASP.NET page:

protected void Page_Load(object sender, EventArgs e)
    {
        /* ... some other code .... */

        System.Web.UI.HtmlControls.HtmlMeta htmlMeta = 
            new System.Web.UI.HtmlControls.HtmlMeta();
        htmlMeta.Name = "keyword";
        htmlMeta.Content = "This is a keyword";
        Page.Header.Controls.Add(htmlMeta);

        /* ... some other code .... */        
    }

The preceding code creates an HtmlMeta object and sets its Name and Content properties, then adds the HtmlMeta object to the Page.Header.Controls collection. This instructs ASP.NET to place the HTML metatag in the HEAD block. Here's an example:

<!-- Head contents come before this... -->
<meta name="keyword" content="This is a keyword" />
</head>
Deepak Choudhari
If you have a hot tip and we publish it, we'll pay you. However, due to accounting overhead we no longer pay $10 for a single tip submission. You must accumulate 10 acceptable tips to receive payment. Be sure to include a clear explanation of what the technique does and why it's useful. If it includes code, limit it to 20 lines if possible. Submit your tip here.
Please rate this item (5=best)
 1  2  3  4  5
advertisement
advertisement
Advertising Info  |   Member Services  |   Permissions  |   Contact Us  |   Help  |   Feedback  |   Site Map  |   Network Map  |   About

internet.commediabistro.comJusttechjobs.comGraphics.com

Search:

WebMediaBrands Corporate Info

Legal Notices, Licensing, Permissions, Privacy Policy.
Advertise | Newsletters | Shopping | E-mail Offers | Freelance Jobs