Hi Alex,
you need the Internet Toolkit which is part of the Enterprise Connectivity Toolset. You can get it also as single toolkit.
You have to program your active pages with the CGI VIs from this toolkit. There is a VI which will give you the parameters of the request of the browser. Use this VI to get the user name and password from the login form. Check this against a user data base. If the user has the right to use the system then:
A)
generate a session number,
store the session number together with some time information,
generate the new page inserting the session number as parmeter in any link and form the user can click
B)
generate a cookie with a session number
store the session number together with some time information
store the cookie on the user system
Either method allows you to identify the user with the next request. Be sure to clean up the session number by providing a logout mechanism or by a cleanup VI which will remove the session after some time.
Be aware that the CGI VIs will not stay in memory if they are not used for some time. Use a permanent storage for the session numbers like a file.
Waldemar
Using 7.1.1, 8.5.1, 8.6.1, 2009 on XP and RT
Don't forget to give Kudos to good answers and/or questions