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 helper method in c#?
what is scope of a protected internal member variable of a c# class
How can you read 3rd line from a text file?
What are actions in c#?
What is difference between private and protected in c#?
What is the output of TextWriterTraceListener redirected?
What are the advantages of interface in c#?
What is parseexact c#?
Why is c# better than java?
How do I declare a pure virtual function in c#?
What is string interpolation in c#?
Is c# slower than java?
What is the execution entry point for a c# console application?
What is a ienumerator?
What is ilist c#?