using System.Diagnostics;
This namespace provides access to local and remote processes and enables you to start and stop local system processes.
protected void Button1_Click(object sender, EventArgs e)
{
// string str = @"C:\windows\system32\notepad.exe";
// string str = @"C:\windows\system32\winamp.exe";
string str = @"C:\Documents and Settings\RAJ\Desktop\MCNewsLetter\SendNewsletter.exe";
Process process = new Process();
process.StartInfo.FileName = str;
process.Start();
}

Nikhil BichewarPosted Jan 31, 2017, 9:51 AM
Its not working on iis server.
Nikhil BichewarPosted Jan 23, 2017, 7:43 AM
Nice article very helpful..
mohit bajajPosted Dec 26, 2012, 7:21 AM
thank you bro
Letsbe DeveloperPosted Oct 4, 2012, 2:51 AM
This Tutorial was very helpful for me, you can try it TO. <a href="http://www.letsbedeveloper.blogspot.in">LetsBeDeveloper</a>
Letsbe DeveloperPosted Oct 4, 2012, 2:50 AM
This Tutorial was very helpful for me, you can try it TO. <a href="http://www.letsbedeveloper.blogspot.in">LetsBeDeveloper</a>
surender bhyanPosted Mar 13, 2011, 8:00 AM
System.Diagnostics.Process.Start(@"C:\skn.txt");
jhnPosted Mar 10, 2011, 4:28 AM
@nikhil @dharmendra Search in google u ll get it other tah wat work u hav..
jhnPosted Mar 10, 2011, 4:27 AM
gud work Raj
Dharmendra GaurPosted Dec 10, 2009, 12:20 AM
Hello Sir Can you tell me how to use line break.
Nikhil KumarPosted Apr 20, 2009, 1:26 AM
sir please tell me how can i use line break .. please give me an example.. Nikhil