Google bot .net and AspxAutoDetectCookieSupport dilemma

Posted by nLL on Stack Overflow See other posts from Stack Overflow or by nLL
Published on 2009-08-21T20:28:45Z Indexed on 2010/04/20 9:03 UTC
Read the original article Hit count: 338

Filed under:
|
|

Hi, i have a .net mobile web site where i use sesion state and due to nature of mobile networks/phones (not all supports session cookies) i had to use

<sessionState cookieless="AutoDetect"/>

It works fine but because each new session redirected with "AspxAutoDetectCookieSupport=1" i have a feeling that google won't like this.

Here is a small sample from my server logs

supportForumReadTopic.aspx id=38 80 - 66.249.71.80 Mozilla/5.0+(compatible;+Googlebot/2.1;++http://www.google.com/bot.html) 302


supportForumReadTopic.aspx id=38&AspxAutoDetectCookieSupport=1 Mozilla/5.0+(compatible;+Googlebot/2.1;++http://www.google.com/bot.html) 200

As you see each new hit from google will get 302 to itself. I have a genericmozilla5.browser file where i define google bot as cookie supporting browser in order to get .net not to use cookieless urls but not sure how this 302 would effect me.

Any one had smilar exprience? Any ideas? Suggestions?

Thanks

© Stack Overflow or respective owner

Related posts about cookieless

Related posts about .NET