Access DropDownList.SelectedIndex in DataList.ItemCreatedCommand (EventBubbling or other solutions) - Stack Overflow most recent 30 from stackoverflow.com 2009-11-24T17:50:04Z http://stackoverflow.com/feeds/question/313735 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/313735/access-dropdownlist-selectedindex-in-datalist-itemcreatedcommand-eventbubbling-o 0 Access DropDownList.SelectedIndex in DataList.ItemCreatedCommand (EventBubbling or other solutions) Israr Khan 2008-11-24T09:21:47Z 2008-11-25T11:41:38Z <p>How am I to bubble the event caused when itemIndex is changed in a dropdownlist - so that I can use the itemindex-value in my ItemCreatedCommand-function?</p> <p>A solution is found at:</p> <p><a href="http://209.85.129.132/search?q=cache:cYDzeE8Swf0J:authors.aspalliance.com/hmcheung/Articles/030331/Default.aspx+dropdownlist+datalist+selectedindex&amp;hl=no&amp;ct=clnk&amp;cd=11&amp;gl=no&amp;client=firefox-a" rel="nofollow">http://209.85.129.132/search?q=cache:cYDzeE8Swf0J:authors.aspalliance.com/hmcheung/Articles/030331/Default.aspx+dropdownlist+datalist+selectedindex&amp;hl=no&amp;ct=clnk&amp;cd=11&amp;gl=no&amp;client=firefox-a</a></p> <ul> <li>But this is in VB.net, and I don't "speak" VB.net well enough to replicate this to C#. </li> </ul> http://stackoverflow.com/questions/313735/access-dropdownlist-selectedindex-in-datalist-itemcreatedcommand-eventbubbling-o/317092#317092 1 Answer by Israr Khan for Access DropDownList.SelectedIndex in DataList.ItemCreatedCommand (EventBubbling or other solutions) Israr Khan 2008-11-25T11:41:38Z 2008-11-25T11:41:38Z <p>Not possible as far as I've found out - must be bubbled up to ItemCommand, and not ItemCreated-command. Thus, leaving you with handling the event, and getting the senders.parent, which is the datalistitem. </p>