Default dropdownlist to database value

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Re: Default dropdownlist to database value

    You may add DB items to dropdown either by data binding or "by hand" using
    similar code in some loop:

    LI = New ListItem
    LI.Value = "value"
    LI.Text = "Display text"
    SomeDropDown.Items.Add(LI)

    You can set selected item for example using:
    lstVideoName.Items.FindByValue("value").Selected = True

    --
    Michal A. Valasek, Altair Communications, [url]http://www.altaircom.net[/url]
    Please do not reply to this e-mail, for contact see [url]http://www.rider.cz[/url]


    Michal A. Valasek Guest

  2. Similar Questions and Discussions

    1. Reg: Showing default data in DropDownList
      Hi I have a datagrid with 2 DropDownList controls...I am binding data to these controls on pageload event. I wanted to show some default text...
    2. Datagrid Dropdownlist in default in edit mode
      Elton Wang wrote: Hi Elton, Thanks for you help. I think you meant ddlreason.selectedindex = I on that 4th to the last line right?
    3. #25420 [Bgs]: pg_connect using connectstring only connect with default database
      ID: 25420 User updated by: domingo at dad-it dot com Reported By: domingo at dad-it dot com Status: Bogus Bug Type:...
    4. Selection List from Database with default value
      I have a form which has a dropdown box created from a MySQL database. The first value is displayed in the box and clicking on the down arrow shows...
    5. DropDownList and AutoPostback -- default item
      Hello -- Is there a way to prevent the autopostback of a drop down list if there is a "default" item in the list -- example, a drop down list...
  3. #2

    Default Re: Default dropdownlist to database value

    ddlSomeDropDown.Items.FindByValue("Database Value").Selected = True



    "Kerri" <kerri@nospam.com> wrote in message
    news:08d001c35df6$15080150$a001280a@phx.gbl...
    > Hi,
    >
    > I have an aspx page with a drop down.
    >
    > This is a page where a user can edit their user profile.
    >
    > When they go to this page, I want the dropdownlists to
    > default to what it is in teh user table.
    >
    > I have tried calling a function that renders out the
    > html, but my html looks like <asp:listitem> so it is not
    > interpreting the server side code.
    >
    > Anyone know how to do this i.e. set the selected value to
    > that in the database and render out additional items in
    > the list?
    >
    > Thanks,
    > C.

    alien2_51 Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139