a script for counting the no. of enters on my site

  • Thread starter Thread starter Mr. x
  • Start date Start date
M

Mr. x

Hello,
I need a script for counting the no. of enters on my site, please.

I need a check that for the same user in the same day - if the user enter
several times, it is count once
(or something like this - I need that the script will accurate as possible).

On the server side I have the .NET server.

Thanks :)
 
Asp.net comes with an on start event available for each application which
you could easily manipulate to do what you are looking for. You should be
able to easily work out the code to add data to an application level array,
or a DB script that only dealt with unique entries as a means of tracking
your users. Or, you could set up your IIS logging to a DB and query the DB
as you would any database for distinct records.

--
Regards

John Timney (Microsoft ASP.NET MVP)
----------------------------------------------
<shameless_author_plug>
Professional .NET for Java Developers with C#
ISBN:1-861007-91-4
Professional Windows Forms
ISBN: 1861005547
Professional JSP 2nd Edition
ISBN: 1861004958
Professional JSP
ISBN: 1861003625
Beginning JSP Web Development
ISBN: 1861002092
</shameless_author_plug>
 
Back
Top