How to start Outlook and NotePad file in AsP.NET with code

Here is the syntax to open outlook or notepad file in ASP.NET VB.NET Process.Start("Notepad.exe") Process.Start("msimn.exe"); C#.NET

System.Diagnostics.Process.Start("msimn.exe");

System.Diagnostics.Process.Start("Notepad.exe");