我有一個頁腳gridview,並顯示在頁腳價格列的總數。我想要訪問頁腳中的值並將其顯示在gridview外部的文本框中。需要在gridview外的文本框gridview中的頁腳總數
這是我的GridView的外觀僅頁腳模板
<asp:TemplateField HeaderText="Total" >
<ItemTemplate>
<asp:Label ID="lbltotal" runat="server" Text='' ></asp:Label>
</ItemTemplate>
<FooterTemplate>
<asp:Label ID="lbltotalprice" runat="server" Text=''></asp:Label>
</FooterTemplate>
</asp:TemplateField>
下面就是我如何在頁腳中顯示總
In gridview rowdatabound event
if (e.Row.RowType == DataControlRowType.Footer)
{
Label amounttotal = (Label)e.Row.FindControl("lbltotalprice");
amounttotal.Text = String.Format("{0:C2}", total);
}
我試圖在以下方式中的另一種方法
GridViewRow row = GridView1.FooterRow;
Total.Text= ((Label)row.FindControl("lbltotalprice")).ToString();--- does not help at all
請在texbox gridview的外部訪問在頁腳這個值幫助。 在此先感謝。