我尝试了很多文章,如下所示来完成我的任务,但没有奏效,因为我总是以NullReferenceException结束,我已将数据库表列绑定到下拉列表,在页面加载时我想选择一个项目基于数据库中列出的项目之一的值。请帮我。
txt_examtype.DataSource = dt;//txt_examtype is the dropdownlist
txt_examtype.DataTextField = "ExamTypeName";
txt_examtype.DataValueField = "ExamTypeName";
txt_examtype.DataBind();
String examtype = dt.Rows[0]["ExamType"].ToString().Trim();
ListItem myitem = txt_examtype.Items.FindByValue(examtype);
txt_examtype.SelectedValue = myitem.Value;