what is DLL Hell and how it is solved in .NET?
Answer Posted / sabari
DLL Hell is nothing but overwriting the dll in the registery. If two application are installed on a single server, one installed First and the Second Installed Later and There is a dll with same name with different functionality used in both the applications, So in this case Application one works fine all the days until application two Installed on the machine. Once the Application two is installed containing the DLL with the same name as Application one Contains then In this case the application one Fails as the DLL from Application two overwites the DLL of Application one in the Registery. So Application two works fine where as Application one Fails as the DLL is missing.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do you handle server controls?
What are the advantages of using session?
What is mvc in asp.net tutorial? : Asp.Net MVC
How Session use Cookies in State Management?
What are the new navigation controls in asp.net 2.0?
What is the postback property in asp.net?
Who can consume WebAPI?
Tell me the code snippet to show how we can return 404 errors from HttpError?
How many types of server controls do we have?Also explain differance between them taking an example of ASP.NET?
What is the request flow used for asp.net mvc framework? : asp.net mvc
Tell me what is the request flow used for asp.net mvc framework? : asp.net mvc
Is asp.net and .net the same?
What is new asp.net core?
What is an example of an application service provider?
How do you declare delegates and are delegates and events one and the same and explain how do you declare delegates and invoke them ?