前后台绑定数据

前台 <asp:Label ID="lblRegionCost" runat="server" Text='<%# (Convert.ToDecimal(DataBinder.Eval(Container.DataItem,"RegionCost"))) .ToString("N2")%>'></asp:Label>   后台 AgentPrice ap = (AgentPrice)e.Item.DataItem; Label lblRegionCost = e.Item.FindControl("lblRegionCost") as Label; lblRegionCost.Text= String.Format( "{0:N2}", ap.RegionCost);
posted @ 2017-03-05 00:00  PhilXu  阅读(171)  评论(0编辑  收藏  举报