Answer Posted / solanki_mca
DLL Hell, is kind of conflict that occured previously, due
to lack of version supportability of dll for(within) an
application.
Previously, if u had deployed any dll for particular
application, and in between u made some changes or provide
some more functionality within that application or u
enhance your application and you deploy new dll or
override existing dll, in this case ur old module which
was/were running fine with previous dll, may behaves
improperly because of new dll deployed.This called dll Hell.
This is no more exist in dot net because of different
version supportability of dll, it means old process worked
with old dll only and respond in exact manner, and new
process which starts after new dll deployed uses(executes
with) new dll and respond to user.
| Is This Answer Correct ? | 76 Yes | 3 No |
Post New Answer View All Answers
I’m having some trouble with cas. How can I diagnose my problem?
a web application needs to be created to accept the product name and quantity of a toy from a customer. After the customer has entered the product name the application needs to display the discounted price of the product to the customer (company is offering 35% discount on all products). The application should allow the customer to select the product name from a list box. and also while i'm data binding to a label with custom data binding with some declarations : "The Discounted Price is "+((System.Convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)) - ((System.convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)*0.35)). Where i need to give this declaration in asp.net 2.0.
What is a proxy in web service?
Explain the difference between asp.net mvc and asp.net webforms? : asp.net mvc
What is the difference between the response.write() and response.output.write() methods?
How many ways are there to maintain a state in .net? What is view state?
What is asp.net caching?
Is redux flux?
What is smpte vc-1?
What is base class of .net?
How we implement web farm and web garden concept in asp.net?
What is a web server? What are the load limits in it?
List the asp.net validation controls?
Explain the difference between server.transfer and response.redirect? Why would I choose one over the other?
what is DLL Hell and how it is solved in .NET? please explain clearly??