How to create session using Jquery in asp.net?
1 Answer
A session is initiated on the serverside. Therefor you will need to make a request, basically making any request to a webservice method or other server generated page will do the trick for you.
You could just send an ajax request to a webservice method (make sure it has enabled Session state). Unless your user has blocked cookies it will work.
If he has blocked cookies, you need him to take a route via an aspx or similair where you initiate the session and set the session parameter in the uri query. Asp.net would probably solve that for you if you look around a bit..