Join Dotnetcodes DotnetCodes.com is online Discussion Forum for Software professionals . It lets you find friends around the world and Create professional network that share similar interests as you. Get help on ur projects by industry specialists. Also get answers to all ur technical/placement related querries.Get an edge over others.
Already MemberClick here to login
ASP.net MVC Interview Questions Answers Interview Questions
Serial Number in SSRS Articles
Get Started Developing for Android Apps with Eclipse Articles
How to Print a Crystal Report direct to printer Articles
.Net framework 4.0 Interview Questions Answers Interview Questions
Razor View Engine Interview Questions Answers Interview Questions
SQL server reporting services Interview Questions (SSRS) part 1 Articles
Whats New in ASP.NET 4.0 Part 2 Articles
Difference between Encapsulation and Abstraction Interview Questions
Explaining SDLC -System Development Life Cycle Articles
SPIRE PDF Library Articles
Infosys Interview Questions Interview Questions
Html5 interview questions and answers Interview Questions
Dynamic Menu using HTML List Tag and CSS in ASP.Net Articles
SharePoint 2010 interview Questions Answers Interview Questions
Submit Articles | More Articles..

Create Meta Tags Programmatically in C#

Posted By: rakesh On:7/30/2010 4:02:09 AM in:Articles Category:CSharp Hits:5000
In This Article you learn How to add Meta Tag Programmatically in C#. The meta tags are used to provides keywords, name, title etc in an HTML page.

Introduction

 in ASP.NET 2.0, you can add these meta tags programmatically. The HtmlMeta class provides programmatic access to the HTML <meta> element on the server. The HTML <meta> element is a container for data about the rendered page

The Name property of HtmlMeta provides the property name and the Content property is used to specify the property value. The Scheme property to specify additional information to user agents on how to interpret the metadata property and the HttpEquiv property in place of the Name property when the resulting metadata property will be retrieved using HTTP.

Source Code

The following code shows how to add meta tags to a page programmatically


    /// <summary>
    /// This Functions is used to add Metadata tag Programatically
    /// </summary>
    /// <param name="strname">Name of the meta tag</param>
    /// <param name="strcontent">meta Content</param>
    /// <param name="Pg"></param>

    public static void CreateMetaTags(string strname, string strcontent,ref Page Pg)
    {

        HtmlMeta hm = new HtmlMeta();

        HtmlHead head = (HtmlHead)Pg.Header;

        hm.Name = strname;
        hm.Content = strcontent;
        head.Controls.Add(hm);

    } 




comments powered by Disqus
User Profile
Rakesh Sinha
Sr. Technical Lead
New Delhi , India
Email :You must Log In to access the contact details.
Latest Post from :rakesh
Which party you want to vote in Loksabha elections 2019?
View: 637 | Submitted on: 10/12/2018 5:59:06 PM
Response.Redirect vs Server.Transfer
View: 483 | Submitted on: 12/27/2015 2:26:38 PM
The test form is only available for requests from the local machine.
View: 711 | Submitted on: 11/3/2015 9:54:36 PM
Difference between web service WCF and Web API
View: 7542 | Submitted on: 10/28/2015 9:23:51 PM
Which party you want to vote in Delhi assembly elections 2015?
View: 1884 | Submitted on: 12/18/2014 4:19:24 AM
Submit Articles | All Post of This User..

All rights reserved to dotnetcodes. Logos, company names used here if any are only for reference purposes and they may be respective owner's right or trademarks.
Best viewed at 1024 x 768 resolution with Internet Explorer 5.0 or Mozila Firefox 3.5 or Google Crome and higher