In my drop-down list, the SelectedIndexChanged event is not firing. I set AutoPostBack=\"True\" but it\'s still not firing. Setting EnableViewState to True or False makes no difference either.
I need to fire the Selectedindexchanged event of a dynamically created dropdownlist. I\'ve no code in aspx page. All code are in codebehind.
public class ComboboxItem { public string Text { get; set; } public string Value { get; set; } public override string ToString() { return Text; }
I have a GridView which I am filling with data from my database. The data displays perfectly. My problem is that I want to be able to click on a row and then display the information that is in that ro
I have a Program Class, with properties as Id, ProgramName,ShortName and Code, im my app I have a ASP DDL like
Please consider the values in comments which I got in debug mode: protected void FilesGrid_SelectedIndexChanged(object sender, EventArgs e)
I have a listBox in a asp.net web form. OnLoad i add items to the listbox and i add a OnSelectedIndexChanged event handler:
I have 3 dropdownlists and one image. First ddl (Stamps: BMW, AUDI, VAZ) gets his data from SQL Server and sets selectedIndex = 0. Second ddl (Models: A6, TT, Z4, X5 etc...) depends from first ddl. If
How can I get the selected item on the SelectedIndexChanging handler when using two SelectCommands? I can get the select开发者_开发百科ed row through e.SelectedRow but I\'m unable to get the selected
I am developing my first asp.net website, my requirementis to refreshDropDownListBat SelectedIndexChanged event of DropDownListA,I have set AutoPostBack=\"True\" for DropDownListA. Now the problem is