当前位置: 代码迷 >> ASP.NET >> 读取状态
  详细解决方案

读取状态

热度:7990   发布时间:2013-02-26 00:00:00.0
读取状态?
aspx代码页:
<asp:radiobuttonlist   id= "RadioButtonList1 "   runat= "server "   RepeatDirection= "Horizontal ">
<asp:ListItem   Value= "1 "> 是 </asp:ListItem>
<asp:ListItem   Value= "0 "> 否 </asp:ListItem>
</asp:radiobuttonlist>
在aspx.cs里头如何根据等于1的情况就选择“是”,0的情况就选择“否”呢?

if(ds.Tables[0].Rows[0][ "IsVisable "].ToString()== "1 ")
{
    ??
}
else
{
    ??
}

请指教!谢谢!

------解决方案--------------------------------------------------------
if(ds.Tables[0].Rows[0][ "IsVisable "].ToString()== "1 ")
{
RadioButtonList1.SelectedValue = "1 ";
}
else
{
RadioButtonList1.SelectedValue = "0 ";
}
  相关解决方案