|
|
 |
BOOK: ASP.NET 2.0 Website Programming Problem Design Solution ISBN: 978-0-7645-8464-0  | This is the forum to discuss the Wrox book ASP.NET 2.0 Website Programming: Problem - Design - Solution by Marco Bellinaso; ISBN: 9780764584640 |
|
Welcome to the p2p.wrox.com Forums.
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 tens of thousands of computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining today you can post your own programming questions, respond to other programmers’ questions, win occasional prizes given to our best members, and eliminate the ads that are displayed to guests. Registration is fast, simple and absolutely free .
|
 |
|
|
 |

February 9th, 2007, 09:29 AM
|
|
Friend of Wrox
|
|
Join Date: Aug 2006
Location: , , .
Posts: 142
Thanks: 0
Thanked 2 Times in 2 Posts
|
|
users online
Hi,
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
thanks
koen
|

February 13th, 2007, 05:24 PM
|
|
Authorized User
|
|
Join Date: Jan 2007
Location: Burnley, Lancashire, United Kingdom.
Posts: 25
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
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?
--
404 real life user not found
|

February 23rd, 2007, 08:29 AM
|
|
Friend of Wrox
|
|
Join Date: Aug 2006
Location: , , .
Posts: 142
Thanks: 0
Thanked 2 Times in 2 Posts
|
|
solved it with this SP :
create procedure ss_GetOnlineUsers
as
begin
SELECT UserName FROM aspnet_Users where
datediff(minute,LastActivityDate,Getdate()) < @yournumberofminutes)
end
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
 |