This is more of a rant than anything else, but does anyone know why if I type in a Repeater in the HTML view in VS.NET 2003 like so:
<asp:Repeater Runat="server" ID="...">
<HeaderTemplate>
<p><hr /></p>
</HeaderTemplate>
<ItemTemplate>
...
</ItemTemplate>
<SeparatorTemplate>
<p><hr /></p>
</SeparatorTemplate>
</asp:Repeater>
When I go to the Design view it gives me that “Error in Server Tag” message. But, if I remove the HeaderTemplate and SeparatorTemplte's contents, then it works fine. Why can't the Designer handle that simple bit of HTML? What gives!?!
Ok, I feel better now.