I have a drop down list that contain dynamic information as follows inside a ASPX file:
Select the item: <select id="DropDownList1"><option>Select Here</option></select>
There is a button that will update the item been modified as follows:
<input id="submit" type="button" value="Update item" />
How do I only refresh the drop down list with the latest information when the button is clicked?
runat="server"for all my DropDownList and Button? That's strange cause it can still run without therunat="server". – Anderson Karu Dec 20 '11 at 4:33