susant


{ City } banglore
< Country > india
* Profession * .net
User No # 17821
Total Questions Posted # 0
Total Answers Posted # 2

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 10
Users Marked my Answers as Wrong # 0
Questions / { susant }
Questions Answers Category Views Company eMail




Answers / { susant }

Question { Satyam, 8425 }

which scripting is used browser by server when we use
validation controls.
1.javascript
2.vbscript
3.jscript
4.perl


Answer

Java Script

Is This Answer Correct ?    1 Yes 0 No

Question { 6764 }

What is Dispose method in .NET?


Answer

The GC call the Finalize () function automatically to
destroy the object called implicit destroy. When you want
to destroy a objects that you think no longer need and free
it from memory, then we will use the dispose function. For
better
Performance we will use the dispose function explicitly.


The Dispose method in .NET belongs to IDisposable interface
and it is best used to release unmanaged objects like File
objects, Windows API objects, Database connection objects,
COM objects etc from the memory. Its performance is better
than the finalize() method.

Is This Answer Correct ?    9 Yes 0 No