ASP Programming

  • Thread starter Thread starter Anthony
  • Start date Start date
A

Anthony

How do I construct an ASP login page using a database? I also would like to
learn how to utilize the "global.asa" file to strore public variables that
can be accessed in other asp pages.

For example. When I login, I want my username to be available on other
pages. It is my understanding, that I can store a variable value in
"global.asa", where the variable is declared, and write that variable value
on another page.

Can this be done?

Thank you,
Anthony
 
For example. When I login, I want my username to be available on other
pages. It is my understanding, that I can store a variable value in
"global.asa", where the variable is declared, and write that variable
value on another page.

I also have a downloadable example, pages and db, at www.fp-resource.co.uk.
See the ASP Tips section.
 
You would not use the global.asa file to store user names, they would be stored as a session
variable once a user has successfully logged in.

--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage

http://www.Ecom-Data.com
==============================================
 
Back
Top