码迷,mamicode.com
首页 > Web开发 > 详细

.NET----- 对下拉框的控制

时间:2020-06-24 23:27:02      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:自己   ring   color   selected   http   image   select   inf   box   

前端设置两个可选择的,后端获取不用自己输入

技术图片

 

 前端的

技术图片

<td width="20%" align="right" bgcolor="#F5F5F5">学生性别(<font color="red">*</font>):</td>
<td align="left" bgcolor="#FFFFFF" width="30%">
<asp:DropDownList ID="tbStuSex" runat="server" width="121px">
    <asp:ListItem></asp:ListItem>
    <asp:ListItem Text="" Value=""></asp:ListItem>
    <asp:ListItem Text="" Value=""></asp:ListItem>
</asp:DropDownList>
</td>

后面的:

技术图片

            this.tbStuSex.Text = gbaoming_jiankang.StuSex.ToString();//性别

展示是时候

技术图片

            //this.tbStuSex.ReadOnly = true;
            //   this.tbStuSex.Attributes.Add("style", "color:#888888;");//性别

            this.tbStuSex.Enabled = false;
            this.tbStuSex.Attributes.Add("style", "color:#888888;");//性别

真正赋值

技术图片

       //gbaoming_jiankang.StuSex = this.tbStuSex.Text.Trim();//性别

        gbaoming_jiankang.StuSex = this.tbStuSex.SelectedValue.Trim();//性别
        if (gbaoming_jiankang.StuSex == string.Empty)
        {
            WebMessageBox1.MessageBox_tishi(700, 300, 200, 300, "请选择学生性别");
            return;
        }

 

.NET----- 对下拉框的控制

标签:自己   ring   color   selected   http   image   select   inf   box   

原文地址:https://www.cnblogs.com/obge/p/13092427.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!