您的位置:首页 > 编程语言 > ASP

ASP.NET关进程的方法

2007-10-25 00:54 162 查看
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.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

using System.Diagnostics;

public partial class Default3 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Button1.Attributes.Add("onclick", "javascript: return confirm('你真的要杀死这个进程吗?');");
if (!IsPostBack)
{

ArrayList list = new ArrayList();
foreach (Process thisproc in Process.GetProcesses())
{
string name = thisproc.ToString();
int j = name.IndexOf("(") + 1;

int i = name.IndexOf(")");

string newname = name.Substring(j, i - j);

list.Add(newname);

}
this.DropDownList1.DataSource = list;
this.DropDownList1.DataBind();
}

}
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{

}
protected void Button1_Click(object sender, EventArgs e)
{
string name = this.DropDownList1.SelectedItem.Text;

foreach (Process thisproc in Process.GetProcessesByName(name))
{
if (!thisproc.CloseMainWindow())
{
thisproc.Kill();
}
}
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: