Tagged Questions

0
votes
2answers
184 views

How do you set up a cookieless domain on a WHM/Cpanel server?

What's the easiest way to set up a cookieless domain on a WHM/Cpanel server? And please don't answer "Don't set a cookie on your domain then", I want to ensure that even if something on the server …
5
votes
0answers
114 views

What is a cookie-free domain? [closed]

What is a cookie-free domain? I've seen these words many times but I never understood what it is.
2
votes
5answers
265 views

How to detect session timeouts when using cookieless sessions.

I'm currently working on a ASP.Net 3.5 project and trying to implement session timeout detection. I know how to do it with enabled session cookies, but without i'm totally lost. When session timeout …
1
vote
2answers
126 views

is it possible to set sessionState mode programmatically in.net?

For a c# web site project that serves content for mobile phones i need to use sesion state. Mobile browsing is abit tricky area, you cannot rely on cookies because some networks just removes them or …
0
votes
0answers
101 views

Difference with regenerateExpiredSessionId=”false” and regenerateExpiredSessionId=”true” .net

My understanding from http://msdn.microsoft.com/en-us/library/system.web.configuration.sessionstatesection.regenerateexpiredsessionid.aspx meaning of regenerateExpiredSessionId="false" was that if a …
1
vote
1answer
95 views

Google bot .net and AspxAutoDetectCookieSupport dilemma

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"/> …
2
votes
1answer
197 views

URL Rewriting in .NET behaves badly with cookieless sessions

I'm currently using Intelligencia's URL Rewriter .NET HTTPModule to rewrite URLs. I am using its Custom Transform feature, which allows me to supply an assembly containing a method that performs the …
0
votes
0answers
68 views

Using FCKEditor across domains

I have a site where I'm moving all its components over to a cookieless domain. i.e. my site is example.org.uk and the cookieless domain is examplestatic.me.uk. I am using FCKEditor as a part of this …
0
votes
2answers
446 views

Cookieless sessions and IIS7 causes a redirect loop

I have an ASP .NET website that uses cookieless sessions. When the initial request is made to the site using a url such as: http://localhost/site IE just displays the standard "Internet Explorer …
2
votes
1answer
81 views

Remove Cookie Support

My site has the following url format: www.mysite.com/Display.aspx?ID=128 However most users see the url as www.mysite.com/Display.aspx?ID=128&AspxAutoDetectCookieSupport=1 How can I avoid …
0
votes
1answer
228 views

cookieless session temporary internet files (asp.net)

Hi, background: I work on an asp.net web application that is on a company intranet. cookieless="true" is set in the web.config in the sessions configuration. The application is launched off a page …
4
votes
7answers
1k views

Asp.net forms authentication login loop

How do you solve the infinite login loop problem when you are using cookieless sessions and cannot change the name of login.aspx to a httphandler ? i.e. When a user with admin rights hits the logout …