Hi I have a quick .NET question - how do I go about killing an object from
memory properly in ASP.NET - im using VB as my language and have written a
class..something like this. I have tried reading round the subject but cant get
any concrete how to's... theres something called an IDisposable class..should I
be using it ??

Dim databaseentry As New DatabaseClass
blah...
databaseentry.InsertData()
'Finished here
databaseentry.Dispose
'Is calling the dispose method correct here?