• Welcome to Web Hosting Community Forum for Webmasters - Web hosting Forum.
 

Recommended Providers

Fully Managed WordPress Hosting
lc_banner_leadgen_3
Fully Managed WordPress Hosting

WordPress Theme

Divi WordPress Theme
WPZOOM

Forum Membership

Forum Membership

ASPSESSIONID cookies in ASP page

Started by HRamesh, October 01, 2008, 09:28:27 AM

HRamesh

Hi,

Whenever, I browse any ASP pages in my web site, it creates the cookies ASPSESSIONID by default. Is there any way through which I can block this so that it doesn't create ASPSESSIONID cookies for ASP page by default?

Thanks,

Ramesh

Kevin

The easy and simple way to disable ASP session state is to add the following code in the starting of your Active Server Page (ASP):

<%@ EnableSessionState=False %>

Please note that the above code should be the first line in your page otherwise it will give you an error.

Kevin