Difference between .NET components and COM components?
Answers were Sorted based on User's Feedback
Answer / krishna prasad
.net component
-----------------
these dlls can be used by any application (platform
independant)
these components are resolved from dll hell problem
com components
-------------
platform dependent components
Is This Answer Correct ? | 2 Yes | 1 No |
Answer / 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 |
How do I send an email message from my ASP.NET page?
What is css in asp.net?
What is & in a url?
How to implement caching?
I have an excel file with data, i am importing this excel file data into Sqlserver 2005 database. while importing i am getting wrong data(ie, special characters) in one column(description column), upto some limit the data in that column is coming fine,after that data is coming like below. The "Walter" leather storage bench is one of our most popular styles. The top with the tufting and double stitching finish a very impressive piece. The size is perfect in front of beds and the storage adds another functional bonus. Open it up and sneak al���Ƴ�Â��ƴ�Ã��ƶ�Å�� al���Ƴ�Â��ƴ�Ã��ƶ�Å�� Is there anywhy to resolve this? (I am using recordset in coding for developing import process.) please help me soon.
can I use session variable in App_code Class page??
What are the components of ado.net?
Below is a code extract from an ASP.Net application. The code basically reads data from the “name” field in the “members” table and prints them onto the webpage. Using the assumptions provided, fill in the 4 blanks below so that the code will run correctly. ‘Assumptions: ‘conn_str is a variable that holds the connection string to the database ‘Objects dbcomm and dbread are already declared earlier dbcomm = New OleDbCommand("SELECT name FROM members", conn_str) dbread = dbcomm._______________ _____________________ response.write(_______________) _____________________ dbread.Close()
What is postback and autopostback in asp.net?
if we establish the cinnection with connection string tag in web.config file,can i go for encrypt and decrypt with that?
How many Controls present in Asp dot net?
What is tracing? Where is it used?