Session not created

liunx

Guest
Hi,

I have written an application that has customer login and administrator login in VB.NET. I am able to login as administrator and the session is created properly. I am not able to login as customer. The session here is not created.

Both the files are in different sub-folders. Can any one help me to solve this issue.

The same set of files are working in my development machine and not in production machine.

Can anyone help to solve it. It is URGENT.

Thanks,
Siva.first way you allow cookies

ALLWAYS CHECK for cookies and tell than in your client .....

2. in Web.config you make cookies in MEMORY

<sessionState
mode="InProc"
stateConnectionString="tcpip=127.0.0.1:42424"
sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes"
cookieless="false"
timeout="20"
/>
but then you site can not be listening from search engines
 
Back
Top