主页 > 知识库 > asp.net中通过DropDownList的值去控制TextBox是否可编写的实现代码

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

热门标签:Linux服务器 Mysql连接数设置 银行业务 团购网站 科大讯飞语音识别系统 服务器配置 阿里云 电子围栏
效果:

.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中通过DropDownList的值去控制TextBox是否可编写的实现代码》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266