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
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. 0 讨论(0) 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复 热议问题
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.