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
Which protocol is used to call web service?
What does a switch do?
What is viewstate? What does the "enableviewstate” property do? Whay would I want it on or off?
What is cross page posting? How is it done?
What is the difference between pathparam and queryparam?
What is the difference between Hash table and Array list?
When cookie will expire?
Explain method to handle error using HttpError in Web API?
How we can force all the validation controls to run?
What is the use of session?
Explain program to call the js function when the change is being made in the dropdown list made in asp.net mvc? : asp.net mvc
What is marshalling ? Is it a part of asp.net ?
Explain one critical mapping?
Where sessions are stored in asp.net?
while developing webservices if i want some users to use my webservice only how can i give security to my webservice?