then you should change your sql toselect typeid + ' ' + typenme as tid from yourtablem_DropDownList.DataSource = ds.Tables["ProductType"].DefaultView;
m_DropDownList.DataTextField = "Tid";
m_DropDownList.DataBind();or just doforech(DataRow dr in ds.Tables["ProductType"].Rows)
{
    m_DropDownList.Items.Add(dr["TypeID"].ToString() + " " + dr["TypeName"].ToString());
}