zoukankan      html  css  js  c++  java
  • 把aspx绑定的数据搬至aspx.cs页面中去

    或许你有做过,接过美工做好生成的Html的前台网页,开始写程序,你会知道有些简单的数据源绑定已经被美工做好了。如下:

    View Code
    <asp:DropDownList ID="DropDownList1" runat="server">
                
    <asp:ListItem Text="求购"></asp:ListItem>
                
    <asp:ListItem Text="出租"></asp:ListItem>
                
    <asp:ListItem Text="家政"></asp:ListItem>
                
    <asp:ListItem Text="培训"></asp:ListItem>
            
    </asp:DropDownList>

    你接过手之后,也许不会置之不理,而是把这些数据源搬至.aspx.cs页面中去。你会创建一个ArrayList来存储这些数据源,然后再绑定到这个DropDownList,重构如下:

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

    .aspx.cs:

    View Code
     protected void Page_Load(object sender, EventArgs e)
        {
            
    if (!IsPostBack)
            {
                
    this.DropDownList1.DataSource = GetServices;
                
    this.DropDownList1.DataBind();
            }
        }

        
    public ArrayList GetServices
        {
            
    get
            {
                ArrayList arrayList 
    = new ArrayList ();
                arrayList.Add(
    "求购");
                arrayList.Add(
    "出售");
                arrayList.Add(
    "家教");
                arrayList.Add(
    "培训");
                
    return arrayList;
            }       
        }

    以后想加减服务类别,直接修改GetServices属性即可,这样做,只是一个较简单的做法,当然你还可以把这些存取入数据库中,这样就复杂多了。

  • 相关阅读:
    堆排序
    jdk8 永久代变更
    oracle 区分大小写遇到的坑
    日志统计分析
    zookeeper 服务挂掉重启后,dubbo 服务是不会自动重新注册上的
    代码质量管理
    快速排序算法
    python flask 项目结构
    项目架构
    JS中的循环---最全的循环总结
  • 原文地址:https://www.cnblogs.com/insus/p/2056599.html
Copyright © 2011-2022 走看看