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

Why do we need interfaces in c#?

0 Answers  


What?s a delegate?

3 Answers  


Explain about accessibility modifier 'protected internal'?

0 Answers  


What is for loop in c#?

0 Answers  


What is task parallel library?

0 Answers  






What is difference between assembly and namespace?

0 Answers  


How to parse a date time string?

0 Answers  


what is class libraries?

1 Answers  


What is abstract class ?

5 Answers   Digital GlobalSoft,


Explain the various types of classes used in c#?

0 Answers  


What are the variables in c#?

0 Answers  


List down the commonly used types of exceptions in .net

0 Answers  


Categories