I ran code-analysis on my website and got a whole string of warnings that make no sense to me.
First, here is the warning I received: 
Warning 16 CA2000 : Microsoft.Reliability : In method 'about_us_masterpage_master.__BuildControl__control2()', object '__ctrl' is not disposed along all exception paths. Call System.IDisposable.Dispose on object '__ctrl' before all references to it are out of scope. C:\Users\Hank_Limited\Documents\Visual Studio 2010\WebSites\FinmanAssociates\About_Us\MasterPage.master 8 C:\...\FinmanAssociates\
I bolded each of the lines which triggered a warning.  As you can see from the full page code I pasted below, I don't have any script blocks -- it's all off-the-shelf Visual Studio 2010 work here.
Does anyone have any idea why I'm getting this warning?
<head runat="server"> <title>[Redacted]</title> < ...

Go to the complete details ...