|
-
December 15th, 2011, 04:44 PM
#1
[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!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|