how you can open another process in c#?
naveen kumar
Select an image from your device to upload
you have to use the process and processstartinfo class which can be found in System.Dignostics nameplace
Here is the sample code
using System.Diagnostics;
process p=new process();
p.startinfo.FileName="mspaint" //or path of any exe the current wil start a ms paint processs
p.start();
write this code behind buttton click event