Session between projects in a solution
-
I want to use session between projects(diff dll) in the same soultion.. Eg Session["user"] = hello I am getting it when i use server.transfer Not getting when it is Respnse.Redirect
-
I want to use session between projects(diff dll) in the same soultion.. Eg Session["user"] = hello I am getting it when i use server.transfer Not getting when it is Respnse.Redirect
VB.Net Developer wrote:
between projects(diff dll) in the same soultion..
Session is not project specific. It's site specific. Is this two projects works on same virtual directory ?
-
VB.Net Developer wrote:
between projects(diff dll) in the same soultion..
Session is not project specific. It's site specific. Is this two projects works on same virtual directory ?
It is in same virtual directory itself
-
It is in same virtual directory itself
When a new project is created, automatically one virtual directory will be created on IIS. Goto IIS settings and check another virtual directory exist for the second project. If exist remove one.
-
When a new project is created, automatically one virtual directory will be created on IIS. Goto IIS settings and check another virtual directory exist for the second project. If exist remove one.
Thanks a lot...That was excatly the problem ........Now i am getting sessions between projects
-
Thanks a lot...That was excatly the problem ........Now i am getting sessions between projects