I need to develop a web application which opens the word document when users clicks the button in the browser.This was done by taking a single word document in my application folder.**Now i need to take multiple documents and display all the file names when user clicks the button in the browser.How can i do this.**
System.Diagnostics.Process objDocProcess = new System.Diagnostics.Process();
objDocProcess.EnableRaisingEvents = false;
objDocProcess.StartInfo.FileName = Server.MapPath(@"OpenOfficeDoc\TestDoc.odt");
objDocProcess.Start();
How to modify my code such that it displays all the file names on button click