Search Results

1
vote
2answers
626 views

How do you kill a process for a particular user in .NET (C#)?

I work off of a multi-user Windows Server, and the rdpclip bug bites us all daily. We usually just open task manager and kill then restart rdpclip, but that's a pain in the butt. I wrote a powers …
0
votes
2answers
316 views

Accessing a Property of a Master Page from a class that’s not part of a content page in ASP.NET

So I'm wiring up my first MasterPage, and everything is working great except for one thing. This is a legacy app, and I have an old BasePage class that all my content pages inherit. It inherits f …
1
vote

How do you kill a process for a particular user in .NET (C#)?

Ok, here's what I ended up doing: Process[] processlist = Process.GetProcesses(); bool rdpclipFound = false; foreach (Process theprocess in proce …
0
votes

Accessing a Property of a Master Page from a class that’s not part of a content page in ASP.NET

So I had my BasePage in App_Code and was trying to set a property of my NIMS_Master class which was in the application root directory. I had to create a MasterBase class that inherits from System. …