Answer Posted / anisha
DLL HELL was there in earlier version of .Net .With the
latest Version .Net handles this automatically.
It arised due to two main reasons.:-
1.> While the dll are named the name may match with those
existing by default in windows folder or if the dll has not
been updated after adding an additional functionality then
the application will throw error and this resulted in DLL
hell.This can be avoided by either updating the DLL or by
changing the version in web.config through strong tag.
2.> There may be a side effect with dll as particular
memory reference may get deleted then the application will
throw error and result in DLL hellas it wont get that
referenced memory required in the application
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How can you implement encapsulation in asp.net?
Explain significance of routing? : asp.net mvc
What is session state server?
What is difference between mvc and asp.net? : Asp.Net MVC
How response object is related to asp's response object?
What is in a session cookie?
How can we prevent browser from caching an aspx page?
What are ASP.NET Web Forms? How is this technology different than what is available though ASP?
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?
Why the javascript validation not run on the asp.net button but run successfully on the html button?
How do you secure your connection string information?
Can I have a unique key as foreign key?
How do you declare static variable? What is its lifetime?
What is Dynamic Web and discuss its usage with the help of real life examples?
What is the difference between an htmlinputcheckbox control and an htmlinputradiobutton control?