Code to run exe like mspaint,autocad etc in asp.net.

Answers were Sorted based on User's Feedback



Code to run exe like mspaint,autocad etc in asp.net...

Answer / rekha

This code snippet executes mspaint exe. Try it
out.

Process p = new Process();
p.StartInfo.FileName = "mspaint";
p.Start();

Is This Answer Correct ?    12 Yes 5 No

Code to run exe like mspaint,autocad etc in asp.net...

Answer / ashwini

Process .Start("mspaint")

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More C Sharp Interview Questions

What is a console file?

0 Answers  


What happens during the process of boxing?

0 Answers  


How do you create empty strings in c#?

0 Answers  


Is it possible to have different access modifiers on the get/set methods of a property?

0 Answers  


Where is the output of TextWriterTraceListener redirected?

1 Answers   Rolta, Siebel Systems,






Explain the difference between boxing and unboxing.

0 Answers   Accenture,


Why do we use ienumerable in c#?

0 Answers  


How do you define a predicate?

0 Answers  


Define interface class in c#?

0 Answers  


What is serialization in dot net?

0 Answers  


Define boxing and unboxing in c#?

0 Answers  


Is and as in c#?

0 Answers  


Categories