Click here to Skip to main content
15,921,203 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Want to create a guestbook for my website in ASP.net Pin
rayneesh31-May-09 21:39
rayneesh31-May-09 21:39 
QuestionThe future of entity framework and LINQ? Pin
Brendan Vogt31-May-09 5:17
Brendan Vogt31-May-09 5:17 
AnswerRe: The future of entity framework and LINQ? Pin
Ramesh Swaminathan31-May-09 5:44
Ramesh Swaminathan31-May-09 5:44 
QuestionDeployment error Pin
Clement Siby31-May-09 3:29
Clement Siby31-May-09 3:29 
AnswerRe: Deployment error Pin
Ramesh Swaminathan31-May-09 4:51
Ramesh Swaminathan31-May-09 4:51 
GeneralRe: Deployment error Pin
Clement Siby31-May-09 4:55
Clement Siby31-May-09 4:55 
GeneralRe: Deployment error Pin
Ramesh Swaminathan31-May-09 5:01
Ramesh Swaminathan31-May-09 5:01 
GeneralRe: Deployment error Pin
Clement Siby31-May-09 6:12
Clement Siby31-May-09 6:12 
QuestionConnecting To A Database ASP .NET [All Code Included = Long Topic] Pin
eginteractive31-May-09 3:13
eginteractive31-May-09 3:13 
AnswerRe: Connecting To A Database ASP .NET [All Code Included = Long Topic] Pin
mrcooll31-May-09 3:25
mrcooll31-May-09 3:25 
GeneralRe: Connecting To A Database ASP .NET [All Code Included = Long Topic] Pin
eginteractive31-May-09 3:27
eginteractive31-May-09 3:27 
GeneralRe: Connecting To A Database ASP .NET [All Code Included = Long Topic] Pin
mrcooll31-May-09 3:31
mrcooll31-May-09 3:31 
AnswerRe: Connecting To A Database ASP .NET [All Code Included = Long Topic] Pin
Ramesh Swaminathan31-May-09 3:28
Ramesh Swaminathan31-May-09 3:28 
GeneralRe: Connecting To A Database ASP .NET [All Code Included = Long Topic] Pin
eginteractive31-May-09 3:32
eginteractive31-May-09 3:32 
GeneralRe: Connecting To A Database ASP .NET [All Code Included = Long Topic] Pin
Ramesh Swaminathan31-May-09 3:36
Ramesh Swaminathan31-May-09 3:36 
GeneralRe: Connecting To A Database ASP .NET [All Code Included = Long Topic] Pin
eginteractive31-May-09 3:38
eginteractive31-May-09 3:38 
GeneralRe: Connecting To A Database ASP .NET [All Code Included = Long Topic] Pin
Ramesh Swaminathan31-May-09 3:44
Ramesh Swaminathan31-May-09 3:44 
GeneralRe: Connecting To A Database ASP .NET [All Code Included = Long Topic] Pin
eginteractive31-May-09 3:46
eginteractive31-May-09 3:46 
GeneralRe: Connecting To A Database ASP .NET [All Code Included = Long Topic] Pin
Ramesh Swaminathan31-May-09 3:52
Ramesh Swaminathan31-May-09 3:52 
GeneralRe: Connecting To A Database ASP .NET [All Code Included = Long Topic] Pin
eginteractive31-May-09 3:55
eginteractive31-May-09 3:55 
GeneralRe: Connecting To A Database ASP .NET [All Code Included = Long Topic] [modified] Pin
Ramesh Swaminathan31-May-09 4:08
Ramesh Swaminathan31-May-09 4:08 
GeneralRe: Connecting To A Database ASP .NET [All Code Included = Long Topic] Pin
eginteractive31-May-09 4:11
eginteractive31-May-09 4:11 
GeneralRe: Connecting To A Database ASP .NET [All Code Included = Long Topic] Pin
Ramesh Swaminathan31-May-09 4:22
Ramesh Swaminathan31-May-09 4:22 
GeneralRe: Connecting To A Database ASP .NET [All Code Included = Long Topic] Pin
eginteractive31-May-09 8:45
eginteractive31-May-09 8:45 
Questionc# retrieve total non-paged memory usage remotely Pin
jw0rd31-May-09 3:03
jw0rd31-May-09 3:03 
Hello,

I'm working on a simple ASP .NET health checker and I've run into a few obstacles.

1) I need to be able to get the full non-paged memory usage from a remote machine (on same network). I've tried using System.Diganostics.Process.NonpagedSystemMemorySize64 however I've come to realize that the kernel's nonpaged usage is going to be missing from that total. Here is a quick sample of what I was doing:

Process[] myprocess = Process.GetProcesses("computername");

foreach (Process p in myprocess)
{
nonpaged += p.NonpagedSystemMemorySize64
}


2) I can overcome that locally by using System.Diagnostics.PerformanceCounter however you can only access the API for that class locally. Is there another class that would suit my needs?

Any help would be appreciated.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.