what is DLL Hell and how it is solved in .NET?
Answer Posted / kureshi salman
DLL HELL refers to the set of problems caused when multiple
application attempt to share a common component like DLL.In
VB6 there are many DLL,Hence the programmer confused which
DLL he wants to update this situation made a s/w or product
failure.
You can avoid this problem in .net using a s/w recompiling
due to recompiling the program ,a DLL is automatically
updated.If the s/w is deployed on a machine,then You can
avoid this problem in .net using a s/w reinstalling the
program a DLL is automatically updated.
| Is This Answer Correct ? | 3 Yes | 8 No |
Post New Answer View All Answers
Define static member?
What kind of data we can store in viewstate?
What are asp.net web forms?
What are the cookies types in asp.net?
How to create multi language website in asp.net mvc? : Asp.Net MVC
What is dynamic web page with example?
Give 2 examples for scenarios when routing is not applied?
How to register exception filter globally?
Which method is used to enforce garbage collection in .net?
Which dll handles the request of .aspx page?
Can you dynamically assign a Master Page?
Do cookies store passwords?
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 difference between view and partial view?
How response object is related to asp's response object?