Code to run exe like mspaint,autocad etc in asp.net.
Answer Posted / 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 |
Post New Answer View All Answers
Distinguish between a class and struct?
What is the difference between c and c# programming?
Can we have only “try” block without “catch” block in c#?
Can an interface extend a class c#?
Which .gang of four. Design pattern is shown below?
Is there a way to force garbage collection?
What are constructors in c#?
What is ulong in c#?
What is the components of window?
Why dictionary is used in c#?
What is managed code?
What is a Managed Code??
Please explain value types and reference types used in c#?
How can you access a private method of a class?
Explain how can I get around scope problems in a try/catch?