如何根据gridview制作不同的按钮动作?

时间:2014-04-28 10:50:21

标签: c# asp.net sql

我有一项任务是根据gridview列上的值进行不同的按钮操作。

当“状态”列的值为“已完成”

时,这是我需要运行的代码
string controllerPath = System.Web.Configuration.WebConfigurationManager.AppSettings["ControllerPath"];
ProcessStartInfo psi = new ProcessStartInfo();
psi.FileName = controllerPath;
psi.UseShellExecute = false;
//psi.WorkingDirectory = Environment.CurrentDirectory;
Process proc = Process.Start(psi);

string msg = "AdHoc update executed";
showSaveNotification(msg);

这是“状态”列显示“正在等待”或“等待”时的代码。

string msg = "You can't update for now.";
showSaveNotification(msg);

我对这些东西很新,所以我需要你的帮助。

提前谢谢你。抱歉我的英语不好。

1 个答案:

答案 0 :(得分:0)