当前位置: 代码迷 >> ASP.NET >> RadioButton 的相关有关问题!
  详细解决方案

RadioButton 的相关有关问题!

热度:7987   发布时间:2013-02-25 00:00:00.0
RadioButton 的相关问题!!!
前台代码: 
<tr class="listA">
<td width="100" align="center">账号状态</td>
<td><asp:RadioButton ID="A" Text="未冻结" GroupName="a" runat="server" Checked="True" /> <asp:RadioButton ID="B" Text="已冻结" GroupName="a" runat="server" /></td>
<td width="360">账号状态分为未冻结和已冻结,已冻结的账号无法进入后台</td>
</tr>


后置代码:

  protected void Page_Load(object sender, EventArgs e)
  {
  IList<mSAGroup> mode = BLL.SAGroup_BLL.SAGroupList();
  type.DataSource = mode;
  type.DataTextField = "groupName";
  type.DataValueField = "id";
  type.DataBind();
  if (!IsPostBack)
  {
  if (Request["id"] != "0")
  {
  mSA sa = BLL.SA_BLL.SASelectForId(int.Parse(Request["id"]))[0];
  userName.Text = sa.userName;
  passWord.Text = sa.passWord;
  remark.Text = sa.remark;
  string authority = sa.authority;
  A.Text = authority;
  if (A.Text == "未冻结")
  {
  A.Checked == true;
  }
  else 
  {
  B.Checked == true;
  }
  type.SelectedValue = sa.uid.ToString();
  }
  }  
  }

后置代码 怎么去能自匹配数据库里的“已冻结”和"未冻结" ,就是这个账号在数据库里的authority字段是这两个任意一个的时候 RadioButton 控件会自己选中对应的那个,求助!!急

------解决方案--------------------------------------------------------
探讨

错误 16 只有 assignment、call、increment、decrement 和 new 对象表达式可用作语句 F:\Desktop\WebAppXX\WebAppXX\admin\module\SAEditor.aspx.cs 33 25 WebAppXX
  相关解决方案