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

asp.net的DropDownList的使用

时间:2015-04-16 23:12:21      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

仅供参考使用!!!!!! 

 protected void Page_Load(object sender, EventArgs e)
    {
        private string selectCourse;
        if (!IsPostBack)
        {
          
            TextBox1.Text = "20";
            TextBox2.Text = "80";
            
        }
        selectCourse = DropDownList1.SelectedItem.Value;
    }
protected void DropDownList1_SelectedIndexChanged1(object sender, EventArgs e)
    {
        if (selectCourse == DropDownList1.SelectedItem.Value)
        {
            return;
        }
        else
        {
            selectCourse = DropDownList1.SelectedItem.Value;
        }
    }

 

asp.net的DropDownList的使用

标签:

原文地址:http://www.cnblogs.com/niexianxue/p/4433387.html

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