I have a div inside a repeater (ItemTemplate) with the following markup\[code\]<div class="bottle listing">\[/code\]Now for some reason this is being rendered as\[code\]<divclass="bottle listing">\[/code\]Which breaks the page. This is only occurring infrequently and I haven't been able to nail down if it is only occurring in some browsers. Check out this site please:http://www.myerwine.com.au/whites/chardonnay/4/16.aspx?page=2I am viewing it in IE8, but I have been told this page is sometimes broken in Firefox and Chrome. When viewing the source in IE see line 415 "divclass="bottle listing"Here is a portion of my repeater:\[code\]<asp:Repeater ID="repResults" runat="server" OnItemDataBound="repResults_DataBound"> <ItemTemplate> <div class="row listing"> <div class="bottle listing"> ............ </div> </div> </ItemTemplate> </asp:Repeater>\[/code\]Any ideas??