Since you did everything else yourself, I think you are stuck tracking the users yourself. I suppose you could create an application object (Application("whatever")) and add and subtract one as you authenticate or sign out users, or you could just add another field to your database to indicate if the user is logged in and query the database. Something like...
SELECT * FROM whatever WHERE LoggedIn = 1
RETURN @@ROWCOUNT
When you ask a question, remember to click "mark as answered" when you get a reply which answers your question.
My latest ASP.NET AJAX blog entries.