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
What is a Jagged Array in C#?
Can you store different types in an array in c#?
List out the differences between array and arraylist in c#?
Why main is static in c#?
Why we use methods in c#?
What is exe file in c#?
Howmany five tracing levels in System.Diagnostics.TraceSwitcher? Why they are using?
What is .dbml file?
Explain About delegates
Is list ienumerable c#?
What is default constructor in c#?
What is the use of functional interface?
What are the access modifiers in c#?
Why we use extension method in c#?
What is console based application?