Forum Moderators: open
Problem:
1. They tell me that SE spiders start at the top of the page and thus will give weight to the teaser text.
2. I have read that the SE spiders don't like the script that typically is used to enable the teasers to display at random.
Question:
Is there a way in ASP.net 2.0 to select a teaser at random and still make the SE spiders happy?
Cheers,
Poet
So, the question is, how to provide this "pick a teaser + content" at random with each page refresh . . . and still enable the SEs to follow the link from the teaser to the content that it links to?
Poet
As for keeping the teasers random you could use the random class.
Random rand = new Random()
int RandomTeaserID = rand.Next( 0, 29 );
And use the RandomTeaserID to lookup a Teaser text in an array.