Hi,
I have initialized a BO to MasterPage's private field.
private MyBO _myBO = new MyBO();
How could I dispose it? I tried to override MasterPage.Dispose() and call BO.Dispose(). However, it is not been released. I check using ANT profiler, it still show the BO is still at memory.
Any ideas?
Thank you