Dispose() and Finalize() are the
two methods used to release unmanaged resources in ASP.Net.
Finalize() is automatically called by the Garbage Collector, while Dispose() need to
called by the programmer explicitly.
Dispose() will help us to release objects, which are not been collected by the Garbage
Collector.
Thanks,
Sonia