我正在使用网格来显示没有潜在客户。在那里,我必须显示页面明智总计和总计。是否可以在页脚中以2个不同的行显示它? 给我一些建议。我必须在网格中添加8列。
答案 0 :(得分:4)
你可以通过很多方式做到这一点,但其中一种方法是使用TemplateField
这里是gridview的格式(将您的内容放在单元格中) ...
<Columns>
<asp:TemplateField>
<FooterTemplate>
<table width="100%">
<tr><td><asp:Literal runat="server" ID="ltField1" Text='<%# Bind("field1") %>'></asp:Literal></td>
</tr>
<tr><td>><asp:Literal runat="server" ID="ltField2" Text='<%# Bind("field2") %>'></asp:Literal></td>
</tr>
</table>
</FooterTemplate>
...
答案 1 :(得分:2)
您必须通过继承GridView类型来创建自定义GridView类。
namespace CustomControls
{
public class CustomGridView : GridView
{
private string _pageTotal;
public string PageTotal
{
get { return _pageTotal; }
set { _pageTotal = value; }
}
private string _grandTotal;
public string GrandTotal
{
get { return _grandTotal; }
set { _grandTotal = value; }
}
public CustomGridView()
{
}
protected override void OnRowCreated(GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.Footer)
{
e.Row.SetRenderMethodDelegate(CreateFooter);
}
base.OnRowCreated(e);
}
private void CreateFooter(HtmlTextWriter PageOutput, Control FooterContainer)
{
StringBuilder footer = new StringBuilder();
footer.Append("<td>" + this._pageTotal +"</td>");
footer.Append("</tr>");
footer.Append("<tr>");
footer.Append("<td>" + this._grandTotal + "</td>");
footer.Append("</tr>");
PageOutput.Write(footer.ToString());
}
}
}
然后使用'Register'页面指令来引用您的自定义控件。
<%@ Register TagPrefix="cc" Namespace="CustomControls" %>
将控件添加到页面中,确保将ShowFooter设置为true。
<cc:CustomGridView ID="GridView1" ShowFooter="true"></cc:CustomGridView>
然后,您可以设置'PageTotal'和'GrandTotal'属性。
GridView1.PageTotal = "5";
GridView1.GrandTotal = "10";