Please make sure you are calling the above scripts within
if (!IsPostBack)
{
// Your code goes here
} of the page_Load method, otherwise you will not be able to get the selected dropdown list values.
Without this condition check, you are repopulating the dropdownlist on every page load and you will not be able to get the selected dropdown list values.
Leave a comment: