gpt4 book ai didi

c# - 如何从 asp :Dropdownlist on Page load from Code Behind C#? 中选择一个项目

转载 作者:太空宇宙 更新时间:2023-11-03 13:36:05 25 4
gpt4 key购买 nike

我尝试了很多文章,比如下面的文章来完成我的任务,但没有成功,因为我总是以 NullReferenceException 结束,我已经将数据库表列绑定(bind)到下拉列表,在页面加载时,我想根据数据库中的值选择一个项目,这是列出的项目之一。请帮助我。

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;

最佳答案

试试这段代码

 txt_examtype.SelectedValue =  dt.Rows[0]["ExamType"].ToString()

关于c# - 如何从 asp :Dropdownlist on Page load from Code Behind C#? 中选择一个项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18677111/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com