2

One of our MVC sites has some odd URLs showing up in google analytics:

www.domain.com/(F([long 232 character hex string here]))/Route/etc

There's a very long string inserted before the main route which the MVC routing ignores.

What is this?

I know this site runs MVC and the same thing happens: https://stackoverflow.com/(F())/users/login

Community
  • 1
  • 1
  • I have encountered it when running the site from tablets, my guess was that the iPad saved the cookies that way, been wondering too, will wait for an answer :) – Royi Mindel Oct 10 '13 at 12:11
  • Take a look at the answer here: http://stackoverflow.com/questions/6229565/iis7-5-asp-net-mvc-users-hitting-strange-urls-f1xe9exixpz – Nikkelmann Oct 10 '13 at 12:13

1 Answers1

1

To answer your question: According to http://msdn.microsoft.com/en-us/library/aa479315.aspx the "(F([long 232 character hex string here]))" is the Forms Authentication ticket for a cookieless request.

Nikkelmann
  • 536
  • 1
  • 5
  • 13