memory working set with ASP.NET


How can I find out my memory working set with ASP.NET?

U can find with the use of this:-

<%
Response.Write(“The Working Set is ” & System.Environment.WorkingSet.ToString() & ” bytes”)
%>