Assemblies

Explain the role of Assemblies in ASP.Net

Questions by muthamilit

Showing Answers 1 - 2 of 2 Answers

Assembly are the building block of .net application. and it is set for deployment, versioning and application.
and it has three types of Assemblies they are private assembly, shared assembly and satellite assembly.

private assembly access .exe file and shared assembly can access .dll file.

  Was this answer useful?  Yes

parii

  • Jul 8th, 2008
 

An assembly in ASP.NET is a collection of single-file or multiple files.The biggest advantage of using ASP.NET Assemblies is that developers can create applications without interfering with other applications on the system.

The assembly used for one application is not applied to another application. However one assembly can be shared with other applications. In this case the assembly has to be placed in the bin directory of the application that uses it.

The assembly also contains metadata that is known as assembly manifest. The assembly manifest contains data about the versioning requirements of the assembly, author name of the assembly, the security requirements that the assembly requires to run, and the various files that form part of the assembly.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions