creating an exe in .net?
-
hi, what is an exe and why do we create an exe? How is an exe useful in Asp.Net? Give me some examples for creating an exe in .net... Regards Vijay.
You want to create an exe for asp.net . I think you cannot do that. but if you wanna do for visual c#.net ,just build it and look in the bin folder in folder of your project,
-
hi, what is an exe and why do we create an exe? How is an exe useful in Asp.Net? Give me some examples for creating an exe in .net... Regards Vijay.
vijay_83 wrote:
what is an exe
EXE is a file extension which denotes executable type files. What ever program you are executing in windows will be having one EXE.
vijay_83 wrote:
How is an exe useful in Asp.Net?
ASP.NET is not having any relation with EXE. It is applicable for standalone application. ASP.NET is server side scripting language which executes on the server depends on the request it gets.
vijay_83 wrote:
Give me some examples for creating an exe in .net...
Create a new Console or WindowsApplication in .NET. Write your code and run it. You will get an EXE in your output directory.