Where is the best place to store a user's id and connection string for use between pages, the Cache or the Session object?
I'm led to believe that the Cache can be wiped at any time if the memory on the Server is fading...is this correct?
I don't want to use query string for the user id as the query string wouldn't be able to hold the connection string and it wouldn't make much sense to have one storage method for user id and a different storage method for connection string.
I'm led to believe that the Cache can be wiped at any time if the memory on the Server is fading...is this correct?
I don't want to use query string for the user id as the query string wouldn't be able to hold the connection string and it wouldn't make much sense to have one storage method for user id and a different storage method for connection string.