urgent -- Session object problem

  • Thread starter Thread starter Ather Ali Shaikh
  • Start date Start date
A

Ather Ali Shaikh

I have a login authentication to sqlserver and redirect to the specified
directory and page .
before redirecting the session object is persist with 30 variables which i
set at authentication time.
but when it redirect to the new page the object destroyed all the variables
except sessionid what is wrong with this behaviour.
I have used
Response.Redirect
Server.Execute
Server.Transfer
All above functions giving the same result.

Regards
Ather Ali Shaikh
 
Are you redirecting to a page that's part of the same application, or to
another one?
You can't hold the Session state if it is an another application, you know
:)

Branimir Giurov
MCSD.NET, MCAD
eAgility LLC
 
it is the same application

Branimir Giurov said:
Are you redirecting to a page that's part of the same application, or to
another one?
You can't hold the Session state if it is an another application, you know
:)

Branimir Giurov
MCSD.NET, MCAD
eAgility LLC
 
Back
Top