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
Why do we need oops in c#?
Define sealed classes in c#?
What is class in oops with example in c#?
How do I create a multi language, multi file assembly?
Can main method be final?
Why do we need a singleton class?
What is the use of console readkey ()?
Why do we use anonymous method in c#?
Who benefits from ajax?
What is the purpose of a namespace?
How do I calculate relative time?
Is there an equivalent to the instanceof operator in visual j++?
Illustrate the differences between the system.array.copyto() and system.array.clone()?
Can bool be null c#?
How do you create partial methods?