zoukankan      html  css  js  c++  java
  • DropDownList的使用,RadioButtonList的使用

    DropDownList的使用之从后台动态获取值

    前端aspx代码如下

    <asp:DropDownList ID="DDLTypeID" runat="server" >
    </asp:DropDownList>

    后台cs代码

       private void DDLTypeIDBind()
        {
            DDLTypeID.DataSource = DBSqlHelper.getDataTable("select * from 表名 ");
            DDLTypeID.DataTextField = "要绑定的名字";
            DDLTypeID.DataValueField = "要绑定的id";
            DDLTypeID.DataBind();
            DDLTypeID.Items.Insert(0, new ListItem("请选择职位", "0"));
        }
    View Code

    后台获取选中的值

    string Type = Convert.ToInt32(DDLTypeID.SelectedValue);//说明DDLTypeID是DropDownList的id

    jquery方式获取DropDownList选中的值

    var ddl = document.getElementById("DropDownList的id");

    var index = ddl.selectedIndex;

    var Value = ddl.options[index].value;

    RadioButtonList的使用

    前端代码如下

    <asp:RadioButtonList ID="radio" runat="server" RepeatDirection="Horizontal">
    <asp:ListItem Value="0" Selected="true">女</asp:ListItem>
    <asp:ListItem Value="1">男</asp:ListItem>
    </asp:RadioButtonList>

    后台获取值

    int Sex = Convert.ToInt32(radio.SelectedValue);

    RadioButtonList里面的选项默认就是互斥的,只能选一个。

  • 相关阅读:
    考研机试 45.skew数
    考研机试 39.大整数因子
    考研机试 37.小白鼠排队
    考研机试 36.中位数
    考研机试 35.最简真分式
    考研机试 30.进制转换
    软工实践第一次作业
    [CF767D] Cartons of milk
    [CF687C] The Values You Can Make
    [CCPC2020绵阳H] Hide and Seek
  • 原文地址:https://www.cnblogs.com/chenlihong-886/p/5839934.html
Copyright © 2011-2022 走看看