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属性即可,这样做,只是一个较简单的做法,当然你还可以把这些存取入数据库中,这样就复杂多了。

  • 相关阅读:
    json2.js和wcf传递Date对象问题
    使用WebClient发送POST请求
    我也质疑下petshop
    sql server 2005 游标使用小例
    关于SCOPE_IDENTITY、IDENT_CURRENT 和 @@IDENTITY
    小错误大麻烦
    SQL Server启动出现“指定的服务未安装”的解决方法
    非常不错的一个网站
    objectdatasource 未能找到带参数的非泛型方法
    SQLServer日志文件收缩
  • 原文地址:https://www.cnblogs.com/insus/p/2056599.html
Copyright © 2011-2022 走看看