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
Why generics are used?
What are the variables in c#?
Can hashtable have duplicate keys in c#?
Describe a Struct ?
What is iformatprovider in c#?
Explain about accessibility modifier 'protected internal'?
Is there regular expression (regex) support available to c# developers?
Contrast System.String and System.Text.StringBuilder classes?
What is c# windows form application?
To catch any possible exception What is the C# syntax written ?
what optimizations does the c# compiler perform when you use the /optimize+ compiler option?
What are the types of comments in c#?
What are concrete classes?
Can private virtual methods be overridden in c#.net?
Can struct have constructor c#?