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 a type c#?
What's the c# syntax to catch any possible exception?
Explain what is an interface in c#?
How can you overload a method?
Is comparator a functional interface?
If there are 2 interface IParentInterface & IChildInterface as follows. interface IParentInterface { void InterfaceMethod(); } interface IChildInterface : IParentInterface { void InterfaceMethod(); } Both the interface contains method with same name InterfaceMethod(). How InterfaceMethod() will be handled in IChildInterface as its deriving IParentInterface
What is the delegates in c#?
How can you write a class to restrict that only one object of this class can be created (Singleton class)?
What is a delegate?
What does void mean in c#?
What are the ways to deploy an assembly?
How many types of methods are there in c#?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)