i am a newbee on web development. most simple application:
have an asp with which a user can login with username and password.
username and password are used to retrieve a record from a msaccess database.
when not ok, login screen re-displayed.
no problem so far.
if ok, the i want to display the data from the database on a welcome screen, which is a different asp.
after accessing the database, i store the required data as
<% Session("Field1")=Field1 %>
<% Session("Field2")=Filed2 %>
etc.
then i redirect to welcome.asp
display of the username and password is OK
but displaying Field1 and Field 2 does not work.
sometimes just blanks
sometimes error Object not valid any longer.
I tried to use Session.Content(1) but that does not help.
i don't have a global.asa file. (tried that, but it doesnot solve anything)
please help