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
Elaborate differentiation between Cache and Application?
What is the significance of proxy user?
When maintaining session through sql server, what is the impact of read and write operation on session objects?
What is application in asp net?
Explain how cookies work. Give an example of cookie abuse.
What is __ requestverificationtoken?
How can you apply a theme to your asp.net application?
What is the difference between runtime version and version?
Can we set master page as a start page?
Explain the difference between asp & asp.net.
What is active web pages?
What is runat?
Error : The operation couldn’t be performed because ole db provider sqlncli10 for linked server was unable to begin a distributed transaction.00000110 oledb provider for linked server returned message the partner transaction manager has disabled its support for remote/network transactions. I can able to execute the stored procedure in sql server but when i run the web page getting error like above. I did all the configuration. what is the solution?
What is a web server? What are the load limits in it?
What is IPostBack? How to use it?