Access DropDownList.SelectedIndex in DataList.ItemCreatedCommand (EventBubbling or other solutions) - Stack Overflow most recent 30 from stackoverflow.com2009-11-24T17:50:04Zhttp://stackoverflow.com/feeds/question/313735http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/313735/access-dropdownlist-selectedindex-in-datalist-itemcreatedcommand-eventbubbling-o0Access DropDownList.SelectedIndex in DataList.ItemCreatedCommand (EventBubbling or other solutions)Israr Khan2008-11-24T09:21:47Z2008-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&hl=no&ct=clnk&cd=11&gl=no&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&hl=no&ct=clnk&cd=11&gl=no&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#3170921Answer by Israr Khan for Access DropDownList.SelectedIndex in DataList.ItemCreatedCommand (EventBubbling or other solutions)Israr Khan2008-11-25T11:41:38Z2008-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>