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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值