Helo all,
I've an application where in am trying to show a slideshow directly on page load.. for that am using the following code
System.Diagnostics.ProcessStartInfo psi = new System.Diagnostics.ProcessStartInfo(MapPath("Website_WAMS_Product_Overview.pptx"));System.Diagnostics.
Process p = new System.Diagnostics.Process();
if (psi.FileName.Contains("pptx"))psi.Verb = "Show";p.StartInfo = psi;
p.Start();
Its perfectly working on the dev environment but when deployed onto iis7.. am not able open the file..
I've given all folder rights for asp.net account and network service..
but still am getting the same problem
Is there anything am missing?
Thanks in advance.
harish
ขอบคุณครับ
Tag : .NET, Web (ASP.NET), WebService, C#, VS 2010 (.NET 4.x)