Hi can some body help me how to call process.existed() method in c#?
Actually i registered that method in page load it self only but it is not getting fired may i know the reason?
myprocess.Exited += new EventHandler(myprocess_Exited);
void myprocess_Exited(object sender, EventArgs e)
{
lblmsg.Visible = true;
lblmsg.Text = "Process end...";
}
Thank you, Nagu