what is DLL Hell and how it is solved in .NET?
Answer Posted / arjun jaiswal
Dll Hell refers to a set of problems caused when multiple
applications attempt to share a common component like a
dynamic link library (DLL). The reason for this issue was
that the version information about the different components
of an application was not recorded by the system.
.Net Framework provides operating systems with a Global
Assembly Cache. This Cache is a repository for all the .Net
components that are shared globally on a particular
machine. When a .Net component is installed onto the
machine, the Global Assembly Cache looks at its version,
its public key, and its language information and creates a
strong name for the component. The component is then
registered in the repository and indexed by its strong
name, so there is no confusion between different versions
of the same component, or DLL.
| Is This Answer Correct ? | 360 Yes | 16 No |
Post New Answer View All Answers
What do you mean by role-based security?
Dataset is the disconnected environment. suppose if you are binding records to gridview (disconnected environment) and you are making changes to the the grid but before updating the database if any other user modify the data, how will you avoid such problem?
I have an external link in my application say www.xyztest.com. Today this site works on http protocal. Tommorow it may run on https. So i cant hardcore the protocal in the site. When a user clicks on the link how can i know if the external site works on http or https and takes him to that place?
Explain the procedure to handle the process request using mhpm events fired? : asp.net mvc
Can you explain how ASP.NET application life cycle and page life cycle events fire?
What is the difference between page.registerclientscriptblock and page.registerstartupscript?
Explain the advantages of caching?
What is session management in web application?
How does asp net store session ids by default?
How to implement form based authentication in asp.net application?
Explain the function of new view engine in asp.net? : asp.net mvc
What is a global postback url?
Define what is razor? : asp.net mvc
How can you implement encapsulation in asp.net?
What is the difference between user control an custom control?