Allowing Users to only View their Page

  • Thread starter Thread starter craig.buchinski
  • Start date Start date
C

craig.buchinski

Ok i have created a login, what i want to do is each time a user logs
in, i want to direct them to their own web page and not a "community"
web page. Any help would be great.
 
Ok i have created a login, what i want to do is each time a user logs
in, i want to direct them to their own web page and not a "community"
web page. Any help would be great.

At a very high level:

Setup a database table (SQL Server, Access, whatever your
preference) or an XML file
that associates the user id with a web page.

Upon successful login, retrieve the web page from the database
table or xml file based on
the user id.

Redirect to that page.
 
Back
Top