Results 1 to 5 of 5

Thread: [RESOLVED] add items in my dropdownlist???

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Jun 2004
    Location
    cainta
    Posts
    80

    Resolved [RESOLVED] add items in my dropdownlist???

    asp.net code

    <aspropDownList id="infodrop" runat="server">
    <asp:ListItem Value="TestData1">TestData1</asp:ListItem>
    <asp:ListItem Value="TestData2">TestData2</asp:ListItem>
    </aspropDownList>


    Q: Why in my sample.aspx html dont have <asp:ListItem???

    * I have a infodrop and i wanted to add an items like TestData1,TestData2 and TestData3.
    Last edited by Chowking; Aug 10th, 2005 at 10:23 PM.

  2. #2
    Hyperactive Member
    Join Date
    Aug 2005
    Location
    Lancashire UK
    Posts
    375

    Re: add items in my dropdownlist???

    Try this out, the text displayed and the value returned will be the same.

    VB Code:
    1. <asp: DropDownList
    2. ID="infoDrop"
    3. Runat="server">
    4. <asp:ListItem Text="TestData1" />
    5. <asp:ListItem Text="TestData2" />
    6. <asp:ListItem Text="TestData3" />
    7. </asp: DropDownList>

    If you want a different value to be returned you have to assign your value as well:

    VB Code:
    1. <asp: DropDownList
    2. ID="infoDrop"
    3. Runat="server">
    4. <asp:ListItem Text="TestData1" Vaule="data1" />
    5. <asp:ListItem Text="TestData2" Value="data2"/>
    6. <asp:ListItem Text="TestData3" VAule="data3"/>
    7. </asp: DropDownList>

  3. #3
    Frenzied Member TomGibbons's Avatar
    Join Date
    Feb 2002
    Location
    San Diego, CA Previous Location: UK
    Posts
    1,345

    Re: add items in my dropdownlist???

    Make sure you don't just copy and paste Tinbeard's code and wonder why it's not working. 'Value' is spelled incorrectly on two of the three lines on which it appears.

  4. #4

    Thread Starter
    Lively Member
    Join Date
    Jun 2004
    Location
    cainta
    Posts
    80

    Re: add items in my dropdownlist???

    Thanks

  5. #5
    Hyperactive Member
    Join Date
    Aug 2005
    Location
    Lancashire UK
    Posts
    375

    Re: add items in my dropdownlist???

    note to self....... don't reply to threads when tired

    sorry for not being vigilent.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width