Search Results

2
votes
3answers
2k views

DropdownList.selectedIndex always 0 (yes, I do have !isPostBack)

(Scroll down to bottom of post to find solution.) Got a asp.net page which contains a Datalist. Inside this datalist, there is a template containing a dropdownlist and each …
0
votes
1answer
595 views

Access DropDownList.SelectedIndex in DataList.ItemCreatedCommand (EventBubbling or other solutions)

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? A solution is found at: …
1
vote

Access DropDownList.SelectedIndex in DataList.ItemCreatedCommand (EventBubbling or other solutions)

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 datal …