ASP Login and statistics
I want to create a site with some pages and necessary to create accounts of
users for Login in the site and with time determined for expire of logon.
would like to know when each user and
pages visited, (statistics per user)
Also ideas?
Thanks,
Marina
Re: ASP Login and statistics
"Marina Limeira" <marinalimeiraa [at] yahoo.com.br> wrote in message
news:eKVMLLanFHA.2904 [at] TK2MSFTNGP14.phx.gbl...
>
> I want to create a site with some pages and necessary to create accounts
of
> users for Login in the site and with time determined for expire of logon.
>
> would like to know when each user and
> pages visited, (statistics per user)
>
> Also ideas?
>
> Thanks,
> Marina
When a user logins in store their UserID in a Session variable.
When each page is visited, call a subroutine that inserts/updates
a row in a database table of UserID and Page.
Then create a page that reads the database table and displays a
all UserIDs and total Pages visited and allow the UserID to be
clicked for detail counts by Page.
Re: ASP Login and statistics
Have you considered using something like Web Trends?
http://www.aspfaq.com/show.asp?id=2473
Ray at home
"Marina Limeira" <marinalimeiraa [at] yahoo.com.br> wrote in message
news:eKVMLLanFHA.2904 [at] TK2MSFTNGP14.phx.gbl...
>
> I want to create a site with some pages and necessary to create accounts
> of
> users for Login in the site and with time determined for expire of logon.
>
> would like to know when each user and
> pages visited, (statistics per user)
>
> Also ideas?
>
> Thanks,
> Marina
>
>
>
>
>
Re: ASP Login and statistics
www.aspprotect.com is worth checking out
"McKirahan" <News [at] McKirahan.com> wrote in message
news:zd-dnZ2dnZ2YBX6LnZ2dnXuXZ9-dnZ2dRVn-y52dnZ0 [at] comcast.com ...
> "Marina Limeira" <marinalimeiraa [at] yahoo.com.br> wrote in message
> news:eKVMLLanFHA.2904 [at] TK2MSFTNGP14.phx.gbl...
>>
>> I want to create a site with some pages and necessary to create accounts
> of
>> users for Login in the site and with time determined for expire of logon.
>>
>> would like to know when each user and
>> pages visited, (statistics per user)
>>
>> Also ideas?
>>
>> Thanks,
>> Marina
>
> When a user logins in store their UserID in a Session variable.
>
> When each page is visited, call a subroutine that inserts/updates
> a row in a database table of UserID and Page.
>
> Then create a page that reads the database table and displays a
> all UserIDs and total Pages visited and allow the UserID to be
> clicked for detail counts by Page.
>
>