• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

How do I view users connected to my IIS server?

With ASP pages you might be able to use session start / end scripts to update a file or page of IPs. You'd only need to make your main page .asp for this to work. This would definitely work for a "number of active users" count.
 
FTP SITES within IIS have that feature, but not WEB SITES. HTTP connections are after all very short lived. A web browser connects to the web-server, requests a document, retrieves the data, and disconnects. FTP sessions on the other hand are much longer lasting connections.

To view who's connected to your IIS server via FTP, open up the IIS Management Console. Right click on one of your FTP sites (assuming you have at least one FTP site defined), then click the "Current Sessions" button towards the bottom right-hand side of the window.
 
Back
Top