You are currently viewing the BOOK: ASP.NET 2.0 Website Programming Problem Design Solution ISBN: 978-0-7645-8464-0 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
In the manageusers page you can see how many users are online. These are registered users.
Has anyone already written something to
* see the amount of visitor (anonymous users)
* see who (username) is online now
Nope not yet, but I agree, this is a good idea for a mod, and probably very easy to implement, based on the conversion work I am doing from asp3 to .net2 What about a Mods Repository for code for theBeerHouse SK?
solved it with this SP :
create procedure ss_GetOnlineUsers
as
begin
SELECT UserName FROM aspnet_Users where
datediff(minute,LastActivityDate,Getdate()) < @yournumberofminutes)
end