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 the and operator in c#?

0 Answers  


What are nullable types? Is Nullable<int> I and int ?i are same.

2 Answers   TCS,


Why do we use abstraction in c#?

0 Answers  


When you inherit a protected class-level variable, who is it available to?

2 Answers  


what are the advantages of c# over vb.net?

10 Answers   Choice Solutions, HCL, Practical Viva Questions,


What is difference between assembly and dll?

0 Answers  


What is Reflection in .NET? Namespace? How will you load an assembly which is not referenced by current assembly?

0 Answers  


What is the implicit name and type of the parameter that gets passed into the class set method?

0 Answers  


What is the main purpose of xml?

0 Answers  


What is polymorphism in c sharp?

0 Answers  


What is a class c#?

0 Answers  


What is static and use of it?

0 Answers  


Categories