Dan posted on December 13, 2009 11:56

I came across this video today which sounds really useful, I'm going to try this on a couple of small sites and measure the results.

http://www.inlineseo.com/tactics/authority-tagging/

Let me know if you try this and get any good results.


Posted in: SEO  Tags:
Dan posted on December 8, 2009 14:14

I often visit SEOMoz for good information and now they've published their 2009 SEO roundup which is well worth the read:

Search Ranking Factors


Posted in: SEO  Tags:

We've all seen it, you end up on a blog and you'll be reading the nice helpful comments and then suddenly "cash loans - Nice post mate!".  (I get them on here a lot as well...delete, no thank you Mr Spammer).

Google has recently posted an entry on the Web Master Tools Blog about its stance on blog spammers:
hard facts about comment spam.

It's an interesting read about comment spamming but it's also interesting to read the comments and opinions of others which is quite natural.  On the subject of natural, link building needs to look natural and we all know the best type of links are links with the same theme as your site and from a good authority domain.

You can find numerous cheap Indian companies that offer "300 backlinks" for say $250 but these bad companies just comment spam every blog possible regardless of theme creating lots of devalued links that doesn't help anyone.

Considering the above people should not stop commenting and if you like reading blogs and leaving useful comments on the same theme as your site whilst building links naturally (they may or may not have much value) then you can find blogs that don't have NOFOLLOW by using search engines to find known blog commenting systems that will actually create a back link.

NOTE: I personally use this technique for experimenting with new sites to actually measure the effect of the aforementioned blog commenting and other SEO tactics.  The community is full of different opinions on the subject so I find it best just to try it myself and monitor the results.

Blog Comment Finder


Posted in: SEO  Tags: ,

One aspect of on page SEO is to get your keywords to the top of the page.  Now if you're not using nice clean ASP.NET MVC, which by the way doesn't have a nasty viewstate, but the traditional aspx code behind model then as you probably know you the more controls that use viewstate the larger the hidden input field containing the actual viewstate data will be. 

The viewstate also increases page size which is another separate issue but what I wanted to do was look at moving my keywords towards the top of the page whilst keeping viewstate.

There are a few ways of getting around this problem like keeping viewstate on the server (which I might look at later) but the option I went for is to just move the hidden viewstate to the bottom of the form.

I can't take the credit for this fix as I found the solution here http://forums.seochat.com/search-engine-optimization-28/how-can-i-move-the-viewstate-hidden-field-in-asp-6038.html so thought I'd just redistribute.

I had to change the code slightly but here's my base page using the render method to change location of the viewstate:

   1: public class BasePage : Page
   2: {
   3:     protected override void Render(HtmlTextWriter writer)
   4:     {
   5:         var stringWriter = new System.IO.StringWriter(); 
   6:         var htmlWriter = new HtmlTextWriter(stringWriter); 
   7:         base.Render(htmlWriter); 
   8:  
   9:         string html = stringWriter.ToString(); 
  10:         int StartPoint = html.IndexOf("<input type=\"hidden\" name=\"__VIEWSTATE\""); 
  11:         if (StartPoint >= 0) { 
  12:         int EndPoint = html.IndexOf("/>", StartPoint) + 2; 
  13:         string viewstateInput = html.Substring(StartPoint, EndPoint - StartPoint); 
  14:         html = html.Remove(StartPoint, EndPoint - StartPoint); 
  15:         int FormEndStart = html.IndexOf("</form>") - 1; 
  16:         
  17:             if (FormEndStart >= 0) { 
  18:             html = html.Insert(FormEndStart, viewstateInput); 
  19:         } 
  20:         } 
  21:         writer.Write(html); 
  22:     }
  23:  
  24: }

Posted in: SEO  Tags: , ,

Calendar

«  March 2010  »
MoTuWeThFrSaSu
22232425262728
1234567
891011121314
15161718192021
22232425262728
2930311234
View posts in large calendar

Authors

Recent Comments

Banners

Theme Grabber
Disclaimer
The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

© Copyright 2010 Dan Gibbons .Net Developer