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


Please Help Members By Posting Answers For Below Questions

What is a hash table in c#?

717


Why is c# good for games?

729


What is the use of system.environment class in c#.net?

726


What is static class in C#?

772


Explain the mechanism of VB.NET/C# achieve polymorphism?

749


What are delegates in C#?

767


Describe the types of comments in c#?

698


What is the role of the datareader class in ado.net connections?

711


What is sqladapter c#?

739


Can a child class call the constructor of a base class?

757


What is field in c#?

655


What is generic delegate in c#?

633


What is the difference between an application domain and a process?

703


Can int be null c#?

704


Explain how to implement an object pool in c#.net

727