• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    asp.net中通过DropDownList的值去控制TextBox是否可编写的实现代码
    效果:

    .aspx:
    复制代码 代码如下:

    %@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
    !DOCTYPE html>
    html xmlns="http://www.w3.org/1999/xhtml">
    head runat="server">
    title>/title>
    /head>
    body>
    form id="form1" runat="server">
    asp:DropDownList ID="DropDownListYesNo" runat="server" AutoPostBack="true" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged">
    /asp:DropDownList>
    asp:TextBox ID="TextBox1" runat="server" Enabled="true">/asp:TextBox>
    /form>
    /body>
    /html>

    .aspx.cs:
    复制代码 代码如下:

    using System;
    using System.Collections.Generic;
    using System.Data;
    using System.Linq;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    public partial class _Default : System.Web.UI.Page
    {
    protected void Page_Load(object sender, EventArgs e)
    {
    if (!IsPostBack)
    {
    Data_Binding();
    }
    }
    private void Data_Binding()
    {
    this.DropDownListYesNo.DataSource = GetData().Select(yn => new { value = yn }).ToList();
    this.DropDownListYesNo.DataTextField = "value";
    this.DropDownListYesNo.DataBind();
    }
    protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
    {
    switch (this.DropDownListYesNo.SelectedItem.Text)
    {
    case "YES":
    this.TextBox1.Enabled = true;
    break;
    case "NO":
    this.TextBox1.Enabled = false;
    this.TextBox1.Text = string.Empty;
    break;
    }
    }
    private Liststring> GetData()
    {
    Liststring> yn = new Liststring>();
    yn.Add("YES");
    yn.Add("NO");
    return yn;
    }
    }
    您可能感兴趣的文章:
    • jquery获取ASP.NET服务器端控件dropdownlist和radiobuttonlist生成客户端HTML标签后的value和text值
    • (asp.net c#)DropDownList绑定后显示对应的项的两种方法
    • asp.net DropDownList自定义控件,让你的分类更清晰
    • asp.net中不能在DropDownList中选择多个项 原因分析及解决方法
    • ASP.NET MVC DropDownList数据绑定及使用详解
    • ASP.NET笔记之 ListView 与 DropDownList的使用
    • ASP.NET服务器端控件RadioButtonList,DropDownList,CheckBoxList的取值、赋值用法
    • asp.net mvc下拉框Html.DropDownList 和DropDownListFor的常用方法
    • ASP.NET MVC中为DropDownListFor设置选中项的方法
    • asp.net DropDownList实现二级联动效果
    • ASP.NET中DropDownList下拉框列表控件绑定数据的4种方法
    • ASP.NET 2.0中的数据操作之七:使用DropDownList过滤的主/从报表
    • ASP.NET 2.0中的数据操作之八:使用两个DropDownList过滤的主/从报表
    上一篇:asp.net中对象失去焦点时自动提交数据 V2
    下一篇:HttpRequest的QueryString属性 的一点认识
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    asp.net中通过DropDownList的值去控制TextBox是否可编写的实现代码 asp.net,中,通过,DropDownList,