Page_Load time, use an IsPostBack as follows. Can you use the value assignment to the dropdown just below?
protected void Page_Load(object sender, EventArgs e)
{
if (Page.IsPostBack) return;
string s = bulList.intype.ToString().Trim();
DropDown.SelectedValue = s;
}