我在网格视图编辑弹出窗口中有一个复选框列表,是和否选择。我试图使用来自数据库的数据填充复选框列表,其形式为"是"和"不"字符串。如何在复选框列表中选择是或否,以便用户可以查看和编辑数据?
我使用的是复选框列表而不是单选按钮,因为用户需要能够取消选中所有复选框。
ASPX:
<asp:CheckBoxList ID="cblCLECompleted" runat="server" RepeatDirection="Horizontal" cssclass="cbTableRow" AutoPostBack="false" Width="50">
<asp:ListItem Text="Yes" Value="Yes">
</asp:ListItem>
<asp:ListItem Text="No" Value="No">
</asp:ListItem>
</asp:CheckBoxList>
代码背后:
private void PopulateAttorneyPopup(int rowIndex)
{
GridViewRow row = gvAttorneys.Rows[rowIndex];
txtAttorneyName.Text = row.Cells[1].Text;
txtStartDate.Text = row.Cells[2].Text;
if (row.Cells[3].Text == "Yes")
{
cblCLECompleted.Selected = "Yes";
}
else
{
cblCLECompleted.Selected = "No";
}
txtLast4ofSS.Text = row.Cells[4].Text;
}
感谢您的时间和帮助!
答案 0 :(得分:1)
我在提交问题的同时解决了这个问题。我想它会让灯泡亮起来。我不知道我可以使用SelectedValue,这显然是我需要使用的。我也简化了陈述。
private void PopulateAttorneyPopup(int rowIndex)
{
GridViewRow row = gvAttorneys.Rows[rowIndex];
txtAttorneyName.Text = row.Cells[1].Text;
txtStartDate.Text = row.Cells[2].Text;
cblCLECompleted.SelectedValue = (row.Cells[3].Text == "Yes") ? "Yes" : "No";
txtLast4ofSS.Text = row.Cells[4].Text;
}