Open a text file using Notepad through ASP.NET

1) import 

using System.Diagnostics;

2) then code inside of button click event handler as,

 protected void btnSave_Click(object sender, EventArgs e)
 {
        Process.Start("notepad.exe", "readme.txt"); // txt file path
 }

-----------------------------
Thank You