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
Is cli same as the clr?
Can abstract class be sealed in c#?
What is the purpose of private constructor in c#?
For read-only operation which property you have to designated?
What is the base class in .net from which all the classes are derived from?
How does array sort work?
What is default constructor in c#?
What is managed or unmanaged code?
What is the difference between decimal and integer?
How do I do a case-insensitive string comparison?
What is trim in c#?
Explain 'structure padding'?
What is reflection in c#?
What is thread pooling?
What are the differences between static, public and void in c#?