Affiliate Marketing
Forum Search

Reply
 
LinkBack Thread Tools Display Modes

  #1 (permalink)  
Old 21-03-06
Registered User
 
Join Date: Mar 2006
Posts: 25
Thanks: 0
Thanked 0 Times in 0 Posts
dave1167 is an unknown quantity at this point
  Cool Google and Dynamic Web Pages

Hi
I'm new to Affiliate marketing, but have developed web pages for many years. I am about to setup a new site.

The problem is quite a lot of the content is going to be dynamic (ASP.Net 2.0) and drawn from a back end database. The Google spider didn't used to crawl dynamic pages is this still the case. I notice a lot of other affilate sites are using PHP so presumably these must get crawled and subsequently ranked.

If it is true then dynamic pages are not going to get ranked by google then it's back to the drawing board!!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 21-03-06
pricethat's Avatar
data muncher
 
Join Date: Sep 2004
Location: Berlin
Posts: 2,485
Thanks: 0
Thanked 0 Times in 0 Posts
pricethat is an unknown quantity at this point
They dont seem to rank as high as a static page if you take like for like content. It s not true that dynamic pages don't get ranked, indeed some of the most highly ranked sites are dynamic such as this site for example. ( i guess you missed this one ).

Having said that use your asp equivalent of mod_rewrite, we mask all of our urls using this and also hide the parameters within the urls so to all intents and purposes it appears as a static html page without complications.

I think for the most of it dynamic pages cause bots a lot more work to work out which url is actually the real url as some dynamic pages could be page=1 but others could be page=1&showvalues=2 which could just be the same page but with a different price for buying two items for example. If the bot was not clever enough to work out that it is the same page then google etc would be a hundred times more full of junk than they are now, fortunately they are seemingly better at it but i think you can see its lots more work for them. Do a search for mod_rewrite to see how that works and then look for the asp version of it. I haven't a clue about asp so i cant really help with that.
__________________
Nothing to see here...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 21-03-06
Registered User
 
Join Date: Dec 2005
Location: Herts UK
Posts: 321
Thanks: 2
Thanked 1 Time in 1 Post
andysears is an unknown quantity at this point
I once had a DIY holiday site and had ASP dynamic pages on that, a particular page generated a Calendar. Google seemed to befriend it.

cal.asp sears-online entered into google results in 1240 results each with a different date.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 22-03-06
Registered User
 
Join Date: Mar 2006
Posts: 53
Thanks: 0
Thanked 0 Times in 0 Posts
markzz is an unknown quantity at this point
Hi there. Google does not penalize dynamic pages in anyway, as long as you let it crawl them properley. The only problems are if you use multiple query strings in a single URL, Google doesn't like that or if the spider gets stuck in a potential "loop".

If you are using ASP/.NET you can use IIS rewrite instead of mod_rewrite, this will make your URLs appear as nice static HTML pages. My advice would be keep query strings and "ID=" to a minimum and upload a full sitemap, as well as having an onpage sitemap.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
  #5 (permalink)  
Old 23-02-07
Registered User
 
Join Date: Oct 2006
Posts: 31
Thanks: 0
Thanked 0 Times in 0 Posts
ejmo is an unknown quantity at this point
  Re: Google and Dynamic Web Pages

Hi, I am just looking at using a dynamic page for the first time and I am also concerned about google. What is "multiple query strings in a single URL" and what do they look like? I was going to use the data feed from affiliate window.
Cheers, Phil.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 23-02-07
accelerator's Avatar
Online shopping rocks!
 
Join Date: Nov 2004
Location: England
Posts: 1,314
Thanks: 8
Thanked 29 Times in 26 Posts
accelerator is an unknown quantity at this point
  Re: Google and Dynamic Web Pages

Quote:
Originally Posted by ejmo View Post
Hi, I am just looking at using a dynamic page for the first time and I am also concerned about google. What is "multiple query strings in a single URL" and what do they look like? I was going to use the data feed from affiliate window.
Cheers, Phil.
Stuff like:

mypage.asp?myvariable1=1&myvariable2=2&myvariable3 =3

Just remember that a spider can't select on page elements etc, it can't go through forms easily, so make sure it can just go through the site by following simple links.

You will find more useful comments on Matt Cutts blog.

http://www.mattcutts.com/blog/

Rgds

Accelerator
__________________
WebRef.eu - Web Development Resources for the Online Entrepreneur
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 23-02-07
tbp tbp is offline
Registered User
 
Join Date: Dec 2006
Posts: 1,999
Thanks: 0
Thanked 18 Times in 18 Posts
tbp is an unknown quantity at this point
  Re: Google and Dynamic Web Pages

Google can index dynamic sites fine, just restrict pages you don't want the spider to index with meta tags or robots.txt file.

Remember not to use the parameter id= , as pages with an id parameter are not indexed by google as it assumes its a unique session identifier.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
  #8 (permalink)  
Old 23-02-07
Registered User
 
Join Date: Jun 2006
Posts: 95
Thanks: 0
Thanked 0 Times in 0 Posts
IntervisionMedia is an unknown quantity at this point
  Re: Google and Dynamic Web Pages

Install ISAPI_REWRITE from Helicon on your server, it's IIS's equivalent to mod_rewrite. So you can use friendly urls e.g.

site.com/products/a-cool-product-you-should-buy/

Hope that helps

Edit:

Oh and don't use postbacks for navigation etc if you're using ASP.NET, and try to stear clear of the more advanced controls and stick to literals and repeaters, so it keeps your code clean and doesn't clutter up the viewstate too much.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 23-02-07
Registered User
 
Join Date: Aug 2004
Posts: 83
Thanks: 0
Thanked 0 Times in 0 Posts
sem4u is an unknown quantity at this point
  Re: Google and Dynamic Web Pages

Quote:
Originally Posted by tbp View Post
Remember not to use the parameter id= , as pages with an id parameter are not indexed by google as it assumes its a unique session identifier.
There are loads and loads of pages indexed by Google with the id= parameter. I have a load in there myself.
__________________
50 Cent | Email Santa Claus
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 23-02-07
Banned
 
Join Date: Nov 2003
Location: Bucharest, Romania
Posts: 2,684
Thanks: 0
Thanked 0 Times in 0 Posts
Lee_Owen is an unknown quantity at this point
  Re: Google and Dynamic Web Pages

Quote:
Originally Posted by IntervisionMedia View Post
Install ISAPI_REWRITE from Helicon on your server, it's IIS's equivalent to mod_rewrite. So you can use friendly urls e.g.

site.com/products/a-cool-product-you-should-buy/

Hope that helps

Edit:

Oh and don't use postbacks for navigation etc if you're using ASP.NET, and try to stear clear of the more advanced controls and stick to literals and repeaters, so it keeps your code clean and doesn't clutter up the viewstate too much.
http://www.helicontech.com/order/#isapi_rewrite

I don't suppose there's anything free that will do the same thing is there and is it automatic after install or do I have to fiddle a bit? (steady) And I presume if I have 100 websites on cpanel, then that counts as one licence perhaps? The latter is a yes, if hostroute will allow. And I think I'll have to fiddle.

Last edited by Lee_Owen; 23-02-07 at 09:24 PM..
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
  #11 (permalink)  
Old 23-02-07
Banned
 
Join Date: Nov 2003
Location: Bucharest, Romania
Posts: 2,684
Thanks: 0
Thanked 0 Times in 0 Posts
Lee_Owen is an unknown quantity at this point
  Re: Google and Dynamic Web Pages

I note there's a free version, ISAPI_Rewrite Lite ( freeware ) if I bung that on will that simply change the urls to read, product title? or do I need the paid version, apologies for asking questions here... but not many.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #12 (permalink)  
Old 23-02-07