Can I create / assign sessionID?

  • Thread starter Thread starter G venkatesh
  • Start date Start date
G

G venkatesh

Can I create the sessionID and assign it to sessionstate? If yes, where it
should be done? Should it be created in Global.asax Session_start method or
somewhere in IHttpmodule?

The purpose is to create a customized sessionID and sharing it across the
websites (2-3 different web sites) with Out-of-process session state
(SqlServer).

Regards
Venkatesh G
 
with the sqlserver sesson, the session data is tied to two keys, the
session id and and the iis site id.

if you want to share session between websites, you will need to write
your own session manager

-- bruce (sqlwork.com)
 
with the sqlserver sesson, the session data is tied to two keys, the
session id and and the iis site id.

if you want to share session between websites, you will need to write
your own session manager

-- bruce (sqlwork.com)
 
Back
Top