[RESOLVED] Running PowerPoint Presentation
I have asp.net/C# application, someone has created a power point of instructions on how to use the application. The only thing I want to do is when the user clicks on a button the power point slide starts. I have tried several ways, I can get it to work on my local machine but can not get it to work on production server by means of the internet. The latest code has no errors, it just does not display and just a quick flash like it try to do something. Pop up blocker is off. I can go to production server and right click the file and it will display. So, I am guessing it is something to do with the C# code.
Here is c# code using:
ProcessStartInfo ppt = new ProcessStartInfo(MapPath("Incident_Reporting_Training_Staff_Level.ppt"));
Process p = new Process();
if (ppt.FileName.Contains("ppt"))
{
ppt.Verb = "Show";
p.StartInfo = ppt;
p.Start();
Any help would be greatly appreciated!