我有一项任务是根据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);
我对这些东西很新,所以我需要你的帮助。
提前谢谢你。抱歉我的英语不好。
答案 0 :(得分:0)