Code to run exe like mspaint,autocad etc in asp.net.
Answers were Sorted based on User's Feedback
Answer / 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 |
What is the and operator in c#?
What are nullable types? Is Nullable<int> I and int ?i are same.
Why do we use abstraction in c#?
When you inherit a protected class-level variable, who is it available to?
what are the advantages of c# over vb.net?
10 Answers Choice Solutions, HCL, Practical Viva Questions,
What is difference between assembly and dll?
What is Reflection in .NET? Namespace? How will you load an assembly which is not referenced by current assembly?
What is the implicit name and type of the parameter that gets passed into the class set method?
What is the main purpose of xml?
What is polymorphism in c sharp?
What is a class c#?
What is static and use of it?