Parsor Error: The ListItem control with a two-way databinding..
Hej Eksperter,Jeg får en fejl på min side:
http://arvinthechamp.dk/zantiago/cxr/EditProject.aspx?ProjectID=1
But why???
Det sker i denne kode - men kan ik lige se hvad jeg gør galt:
-----------------------------------------------------------------
<asp:TemplateField HeaderText="ProjectCategory" SortExpression="ProjectCategory">
<EditItemTemplate>
<asp:DropDownList ID="DropDownList1" runat="server">
<asp:ListItem Selected="True" Text='<%# Bind("ProjectCategory") %>'></asp:ListItem>
<asp:ListItem Text="Bolig"></asp:ListItem>
<asp:ListItem Text="Plejecentre"></asp:ListItem>
<asp:ListItem Text="Undervisning/Kultur"></asp:ListItem>
<asp:ListItem Text="Erhverv"></asp:ListItem>
<asp:ListItem Text="Øvrige"></asp:ListItem>
</asp:DropDownList>
</EditItemTemplate>
<InsertItemTemplate>
<asp:DropDownList ID="DropDownList1" runat="server">
<asp:ListItem Selected="True" Text='<%# Bind("ProjectCategory") %>'></asp:ListItem>
<asp:ListItem Text="Bolig"></asp:ListItem>
<asp:ListItem Text="Plejecentre"></asp:ListItem>
<asp:ListItem Text="Undervisning/Kultur"></asp:ListItem>
<asp:ListItem Text="Erhverv"></asp:ListItem>
<asp:ListItem Text="Øvrige"></asp:ListItem>
</asp:DropDownList>
</InsertItemTemplate>
<ItemTemplate>
<asp:Label ID="Label2" runat="server" Text='<%# Bind("ProjectCategory") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
-----------------------------------------------------------------
Nogen bud? :-)