I have a combo box that looks great in the designer, the list of choices are perfect. But when I view the ASP code, or the published webpage the choices are seriously garbled. I have tried adding items, but it does not seem to regenerate the code. Any ideas why it happened and what I should do? I do most of my editing through the designer GUI. Thanks!

Note the blank items and even items mixed up together: TVCricket
asp Code:
  1. <asp:DropDownList ID="ddlFoundOut" runat="server">
  2.                         <asp:ListItem Selected="True">(Pick how you found out about us)</asp:ListItem>
  3.                         <asp:ListItem>Another Store</asp:ListItem>
  4.                         <asp:ListItem>Banner at Arena</asp:ListItem>
  5.                         <asp:ListItem>TVCricket</asp:ListItem>
  6.                         <asp:ListItem>West NewsmagazineClear</asp:ListItem>
  7.                         <asp:ListItem>Driving By</asp:ListItem>
  8.                         <asp:ListItem>Friend/Co-worker</asp:ListItem>
  9.                         <asp:ListItem>Internet</asp:ListItem>
  10.                         <asp:ListItem>Mall Sign</asp:ListItem>
  11.                         <asp:ListItem>Online Phone Book</asp:ListItem>
  12.                         <asp:ListItem>Phonebook (paper)</asp:ListItem>
  13.                         <asp:ListItem>Radio</asp:ListItem>
  14.                         <asp:ListItem></asp:ListItem>
  15.                         <asp:ListItem></asp:ListItem>
  16.                         <asp:ListItem>Other</asp:ListItem>
  17.                         <asp:ListItem>Other Magazine</asp:ListItem>
  18.                         <asp:ListItem>Other News Paper</asp:ListItem>
  19. </asp:DropDownList>