gpt4 book ai didi

c# - 中继器控件中的单选按钮列表

转载 作者:行者123 更新时间:2023-11-29 13:28:07 25 4
gpt4 key购买 nike

我一直在做一个项目,因为我遇到了一个问题,因为我里面有一个中继器和单选按钮列表,我想从我的数据库填充单选按钮列表,但我收到一个错误,因为对象引用未设置为对象的实例。

aspx code
<asp:Repeater ID="Repeater1" runat="server"OnItemDataBound="fillRepeater_onitembound">
<HeaderTemplate>

</HeaderTemplate>
<AlternatingItemTemplate>

</AlternatingItemTemplate>
<ItemTemplate>
<table style="width:1100px">
<tr style="width:1100px">
<asp:Label ID="lbl_teachername" runat="server" Text='<%#Eval("teachername") %>' ></asp:Label>
<asp:Label ID="lbl_teachercode" runat="server" Text='<%#Eval("teachercode") %>' style="display:none;" ></asp:Label>

</tr>
<br />
<tr>
<td style="width:150px">
<asp:Image ID="img_teacher" runat="server" ImageUrl="~/Images/staff.png" Height="100px" Width="100px"/>
</td>
<td >
<asp:RadioButtonList ID="radioatt" runat="server" OnSelectedIndexChanged="radioatt_OnSelectedIndexChanged" AutoPostBack="true" >

</asp:RadioButtonList>
</td>
</tr>
<tr>
<td>

</td>

</tr>

</table>
</ItemTemplate>
</asp:Repeater>

c# code

protected void fillRepeater_onitembound(object sender,RepeaterItemEventArgs e)
{
if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
{

sql = "select Description,AttendanceCode from tblattendancecodes";
ds = obj.openDataset(sql);
ListItem li;

RadioButtonList rbtl = (RadioButtonList)e.Item.FindControl("radioatt");

for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
{
li = new ListItem();
li.Text = ds.Tables[0].Rows[i]["Description"].ToString();
li.Value = ds.Tables[0].Rows[i]["AttendanceCode"].ToString();
rbtl.Items.Add(li);
}

}
}
please help me out

最佳答案

添加单选按钮列表的空检查,您将不会收到对象引用错误。请看下面的代码

C# 代码

protected void fillRepeater_onitembound(object sender, RepeaterItemEventArgs e)
{
if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
{
sql = "select Description,AttendanceCode from tblattendancecodes";
ds = obj.openDataset(sql);
ListItem li;

RadioButtonList rbtl = (RadioButtonList)e.Item.FindControl("radioatt");
if (rbtl != null)
{
for (int i = 0; i < dt.Rows.Count; i++)
{
li = new ListItem();
li.Text = dt.Rows[i]["ApplicationName"].ToString();
li.Value = dt.Rows[i]["BuildNumber"].ToString();
rbtl.Items.Add(li);
}
}
}
}

我尝试了代码,它对我有用

关于c# - 中继器控件中的单选按钮列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19852342/

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