草本枝稼

2009年8月11日

c#网络编程学习概要

摘要: 1、掌握网络分层中各层的协议(如TCP、UDP、HTTP、FTP、TELNET等)。2、首先理解网络通信过程中,首先要通过各个层协议寻找到目标主机,然后再通过所指定的端口(Socket)查找到对应的应用程序,最后再进行应用程序间的数据通讯。 阅读全文

posted @ 2009-08-11 23:42 林声歌 阅读(103) 评论(0) 推荐(0) 编辑
系统当前进程使用情况

摘要: private void button1_Click(object sender, System.EventArgs e) {//获取系统当前所有进程 this.listBox1.Items.Clear(); Process[] MyProcesses=Process.GetProcesses(); foreach(Process MyProcess in MyProcesses) { this.... 阅读全文

posted @ 2009-08-11 18:04 林声歌 阅读(116) 评论(0) 推荐(0) 编辑
查看系统当前进程使用情况

摘要: 后台代码:using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.... 阅读全文

posted @ 2009-08-11 18:03 林声歌 阅读(259) 评论(0) 推荐(0) 编辑