urgent: Populate datalist using Dropdownlistselecteditem

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default urgent: Populate datalist using Dropdownlistselecteditem

    hello
    Iam a new begynner.
    let me describe my database tables with an example
    I have 2 tables called A and B

    A B
    InsID | Insname kuID | kuname | InsID

    1 | aaaa 1 | abcd | 1
    2 | bbbb 2 | efgh | 1
    3 | cccc 3 | ijkl |
    2
    4 | dddd 2 | mnop | 2

    and have a dropdownlist and a datalist contril in my form where i populated
    dropdownlist with datas from Insname fram Tabel A
    and all i want to do is to populate Datalist control by kuname by selecting
    Insname from dropdownlist controll..

    Hope iam not confusing..
    how do i do that using c# in Dreamweaver MX2004?

    Thankyou in advance

    suji123 Guest

  2. Similar Questions and Discussions

    1. Populate Text Box
      I have a form with a drop box and some text boxes(Fname, Lname, M). A drop box is displayed all name from the database with this format: lname,...
    2. populate a PDF Form from CF
      I'm having trouble finding information on how I can populate a PDF form with vars from a CF output. (CFFORM) I found a tag in the Macromedia...
    3. Populate a playlist with XML/PHP
      Ok, I'm new to data integration with Flash, but I have a decent grasp on PHP/mySQL and some of XML. Here's what I am thinking. I am putting...
    4. Best way to populate a <SELECT>
      Hi All I've being doing it my own little way for sometime now, but I'm not sure if its the best. When I'm doing a recordset for a simple...
    5. populate combo in asp
      Can someone please tell me what they think is wrong with this code to populate a combo : <select name="select"> <% While ((Repeat1__numRows <>...
  3. #2

    Default Re: urgent: Populate datalist using Dropdownlistselecteditem

    sorry tables i created was not clear

    A
    InsID | Insname
    1 | aaaa
    2 | bbbb
    3 | cccc
    4 | dddd

    B
    kuID | Insname| InsID
    1 | abcd | 1
    2 | efgh | 1
    3 | ijkl | 2
    4 | mnop | 2

    suji123 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