My requirement is to open an excel book using c#. (ie) Am creating an excel and writing the stuffs which are needed to be entered in excel and saving it in a location .In final am showing user a yesorno box with messgae do you need to open the excel. If user selects option YES then i need to open the excel from the path where i saved and need to show the user by excel open . I tried the following for opening the excel application using c#,but excel is not getting opened.
Application excel = new Application();
Workbook wb = excel.Workbooks.Open(path);
Thanks in advance