This is my first post in Csharpcorner .I belive that "If you cannot do it or explain it simple ..then better leave it simple".
 
 
 
Enterprise Library 6.0 in Asp.Net
 
 
 
What is Enterprise Library?
Enterprise Library is collection of blocks and core applications.Enterprise Library is reusable software
content that is used for insisting the software developers.
 
 
It is actively developed by Patterns and Practises team in a collabration with a community.
 
 
Enterprise Library Application Blocks:
 
 
Security Application Blocks : This Block relates to the security of the Enterprise Application,like Authenticatio and Authorization.

Exception Handling Block : It handles the errors in the various layers of Enterprise Application.

Cryptography Application Block : This Block adds the encryption and hashing functionality to the Enterprise applications.

Caching Application Block : It allow developers to cache the output of the Enterprise Applications
 
 
How to create Enterprise Library :
 
 
create a new website
New => project => Asp.net Empty website(name it).
 
Right click the project and manage Nuget packages and search for
 
Enterprise Library - Data Access Application and click on install.
 
 
After installation ,expand the Bin folder you will find the two dlls like
 
Using Microsoft.Practises.Enterprise.Data;
 
Using Microsoft.Practises.Enterprise.Data.Sql;
 
Use database connection and fetch the data ,this is the way you build complex enterprise applications
 with various blocks ,hope you understand well...