Difference between .NET components and COM components?
Answer Posted / samanthwal
.Net Component gets best use of managed environment while
COM component were suffered greatly from DLL hell problems
and due to the reference counting approach they usual face
the problem of memory leaks.
but in .NET component all these issues are resolved by CLR.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What ports must be open for DCOM over a firewall? What is the purpose of Port 135?
Explain the steps needed to be performed in order to create an animation in xaml?
What are the different method of navigation in asp.net?
Where session variables are stored?
What is session state server?
What are the modes of updation in an updatepanel? What are triggers of an updatepanel?
Where session id is stored?
Explain advantages of caching?
can any one find and tell the difference between dot net and php which one is best ? which one we get more salary? which one is stable and which one is best for freshers and also better in future and carrer ? which one we wil get more salary sir ? please send ur valuable suggestions to kiranpulsar2007@gmail.com
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 base class of button control in .net?
What happens if an ASP.NET server control with event-handling routines is missing from its definition?
Explain the namespace classes used in asp.net mvc? : asp.net mvc
How can we make sure that Web API returns JSON data only?
What is the basic purpose of the required field validator? How can you use a required field validator to check that the user changes the initial value of a text box? a listbox?