I have a Repeater who should show some data from my ms.sql server. But all code inside the Repater is not shown on my .aspx page. What am i doing wrong. I have a similar Repeater on another page and there it works fine.
<div class="AnsaettelseKontrakt Folders">
<table cellpadding="0" cellspacing="0" width="750px" align="right">
<tr>
<th class="BrugerHeader" style="width:300px;">Filnavn</th>
<th class="BrugerHeader" style="width:80px;">Størrelse</th>
<th class="BrugerHeader" style="width:150px;">Dato</th>
<th class="BrugerHeader" style="width:180px;" colspan="2">Brugere</th>
<th class="BrugerHeader" style="width:40px;">Værktøjer</th>
</tr>
<asp:Repeater ID="RepeaterAns" runat="server" onitemcommand="Repeater1_ItemCommand" >
<ItemTemplate>
<tr class="Br
View Complete Post