Closed Thread
Results 1 to 4 of 4

Thread: meta tags

  1. #1
    stevejhon is offline Newbie
    Join Date
    Oct 2008
    Posts
    1
    Rep Power
    0

    meta tags

    Hi,

    i have articles uploaded from the admin side.in my website a short description uploaded from admin only wil appear for visitors and full article wil display for users and members.i am planning to display the articles in a datalist.My problem is, this articles need to come in the search engines when they search for the key words.i have little idea about meta description , keywords and all.How i can programatically set the meta key words for each article.so that wen somebody search in the search engines, they wil get redirected to the corresponding page in the datalist and corresponding article in that page.how i can accomplish this?

  2. CODECALL Circuit advertisement
    Join Date
    Always
    Posts
    Many

     
  3. #2
    Jordan Guest

    Re: meta tags

    Google does not use meta tags and it is the only search engine that matters ATM.

  4. #3
    shazzmerc is offline Newbie
    Join Date
    Oct 2008
    Posts
    1
    Rep Power
    0

    Re: meta tags

    Hi Steve,
    I have Suggest this simple code for your requirement.please put the following code in your page load event.

    // Render: <meta name="description" content="value" />
    HtmlMeta meta = new HtmlMeta();
    meta.Name = "description";
    meta.Content = value;
    head.Controls.Add(meta);

    // Render: <meta name="keywords" content="value" />
    HtmlMeta meta = new HtmlMeta();
    meta.Name = "keywords";
    meta.Content = value;
    head.Controls.Add(meta);

    Regards;
    shazz

  5. #4
    duabevnh Guest

    Re: meta tags

    Great!

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Meta tags (keywords and description)?
    By dasseya1 in forum PHP Development
    Replies: 1
    Last Post: 06-06-2010, 10:44 PM
  2. Google tells officially that meta keywords tags are not important at all.
    By stephen186 in forum Search Engine Optimization
    Replies: 1
    Last Post: 09-24-2009, 08:37 AM
  3. How to use Meta tags?
    By c0de in forum Tutorials
    Replies: 0
    Last Post: 09-11-2007, 04:01 AM
  4. Meta tags?
    By littlefranciscan in forum HTML Programming
    Replies: 6
    Last Post: 03-06-2007, 03:33 AM
  5. Meta Tags
    By Kaabi in forum Search Engine Optimization
    Replies: 2
    Last Post: 07-07-2006, 06:46 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts