System.Diagnostics.Process MyProcess = new System.Diagnostics.Process();MyProcess.StartInfo.WorkingDirectory = Request.MapPath("~/"); MyProcess.StartInfo.FileName = Request.MapPath("WindowsMediaPlayer.exe"); MyProcess.Start();
ProcessStartInfo MyProcessStartInfo = new ProcessStartInfo();MyProcessStartInfo.FileName = @"c:\WINDOWS\system32\notepad.exe";MyProcessStartInfo.Arguments = @"c:\MyText.txt";Process.Start(processStartInfo);