UserControl objCtrl = ((UserControl)(FindControl("Id of the Usercontrol as declared in the container page")));DropDownList ddl = ((DropDownList)(objCtrl.FindControl("Id of the Dropdownlist control in the usercontrol")));Response.Write(ddl.SelectedItem.Value);