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 hash table in c#?
Why is c# good for games?
What is the use of system.environment class in c#.net?
What is static class in C#?
Explain the mechanism of VB.NET/C# achieve polymorphism?
What are delegates in C#?
Describe the types of comments in c#?
What is the role of the datareader class in ado.net connections?
What is sqladapter c#?
Can a child class call the constructor of a base class?
What is field in c#?
What is generic delegate in c#?
What is the difference between an application domain and a process?
Can int be null c#?
Explain how to implement an object pool in c#.net