Click here to Skip to main content
15,892,199 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: Getting the page height Pin
Craig G Fraser28-May-09 23:43
Craig G Fraser28-May-09 23:43 
QuestionSecurity Softwate interface Pin
WebMaster28-May-09 1:01
WebMaster28-May-09 1:01 
AnswerRe: Security Softwate interface Pin
Ashfield28-May-09 2:10
Ashfield28-May-09 2:10 
QuestionHow to run the powerpoint presentation (.ppsm) file using C# in web based application Pin
Anil Dwivedi28-May-09 0:24
Anil Dwivedi28-May-09 0:24 
AnswerRe: How to run the powerpoint presentation (.ppsm) file using C# in web based application Pin
Marc Firth28-May-09 1:55
Marc Firth28-May-09 1:55 
GeneralRe: How to run the powerpoint presentation (.ppsm) file using C# in web based application [modified] Pin
Anil Dwivedi28-May-09 20:03
Anil Dwivedi28-May-09 20:03 
GeneralRe: How to run the powerpoint presentation (.ppsm) file using C# in web based application Pin
Marc Firth28-May-09 21:47
Marc Firth28-May-09 21:47 
GeneralRe: How to run the powerpoint presentation (.ppsm) file using C# in web based application Pin
Anil Dwivedi29-May-09 18:51
Anil Dwivedi29-May-09 18:51 
Hi guys,

I have tried following code and it work when choose server option as "Use Visual Studio Development Server" in Web tab of Website Project's property and running with Visual Studio. But it doesn't work When I choose server option as "Use Local IIS Web server" in Web tab of Website Project's property and also it doesn't work when i deploy it on IIS web server & no any exception/error throws as well.

try
            {
                
                ProcessStartInfo psi = new ProcessStartInfo(MapPath("MaxMinTest.ppsm"));
                Process p = new Process();
                if (psi.FileName.Contains("pptx"))
                    psi.Verb = "Show";

                p.StartInfo = psi;
                p.Start();
            }
            catch (Exception ex)
            {
                Response.Write(ex.Message);
            }


Here I have used [ using System.Diagnostics ] name space.

Please help me If you guys have any solution. It's very urgent

Thanks & Regards,

Anil Dwivedi
QuestionsharePoint development - Users Pin
jaafar.joo27-May-09 21:43
jaafar.joo27-May-09 21:43 
AnswerRe: sharePoint development - Users Pin
Marc Firth27-May-09 22:02
Marc Firth27-May-09 22:02 
GeneralRe: sharePoint development - Users Pin
jaafar.joo27-May-09 22:09
jaafar.joo27-May-09 22:09 
AnswerRe: sharePoint development - Users Pin
Marc Firth27-May-09 22:03
Marc Firth27-May-09 22:03 
QuestionJavacsript Always on top link scoll Pin
Member 400664826-May-09 19:36
Member 400664826-May-09 19:36 
AnswerRe: Javacsript Always on top link scoll Pin
Marc Firth26-May-09 22:20
Marc Firth26-May-09 22:20 
QuestionNot your typical ListView Pin
tzeis26-May-09 9:25
tzeis26-May-09 9:25 
QuestionWrapping VOIP traffic Pin
B060611526-May-09 0:43
B060611526-May-09 0:43 
AnswerRe: Wrapping VOIP traffic Pin
Marc Firth26-May-09 22:18
Marc Firth26-May-09 22:18 
Questionsql server integration with language ware Pin
newmember2225-May-09 21:44
newmember2225-May-09 21:44 
Questioncoding help for photographers password input for client proofing Pin
mbeach25-May-09 16:57
mbeach25-May-09 16:57 
AnswerRe: coding help for photographers password input for client proofing Pin
Marc Firth26-May-09 22:15
Marc Firth26-May-09 22:15 
QuestionInsert external html page into another web page and fix it size Pin
Duna25-May-09 0:40
Duna25-May-09 0:40 
AnswerRe: Insert external html page into another web page and fix it size Pin
jackspar25-May-09 2:34
jackspar25-May-09 2:34 
AnswerRe: Insert external html page into another web page and fix it size Pin
Marc Firth26-May-09 22:12
Marc Firth26-May-09 22:12 
GeneralRe: Insert external html page into another web page and fix it size Pin
Duna28-May-09 8:20
Duna28-May-09 8:20 
QuestionHow to set the menu width using css Pin
mdazeemuddin24-May-09 21:59
mdazeemuddin24-May-09 21:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.