I have an ASP.NET ListView control (see below).
Unfortunately, when a ListView control is rendered is does so absent of HTML tags such as THEAD/TBOD
It is cause you mark table as runat element
<table runat="server" class="scrollTable" >
May be ASP.NET Forms framework realization causes a parsing of table content with removing "thead" tags.
Try to realize your layout without marking table tag with runat="server". I tried it and thead tag is rendered.