Posted on: 1/15/2015 10:10:23 AM | Views : 496

I have Asp.net 4.0 application.In this Application, am having a dropdownlist and a button.When the page loads, the dropdwlist is  loading with 5 items. When I Click on the button, need to delete  selected item from the dropdowlist permantely.for this, wrote a javascript method for and it is have the code like
varx = document.getElementById("DropDownList1");
            x.remove(2);
After excute the code , the same item is existing ...

Go to the complete details ...