vote up 0 vote down star

I'm using the ListView control (ASP.NET 2008) to show a bunch of lines of data, and at the bottom I want some totals. I was initially going to define the header and footer in the LayoutTemplate and get the totals with some local function, i.e. <%#GetTheSum()%>, but it appears that the LayoutTemplate does not process the <%#...%> syntax.

Another thought would be to put a Label in the LayoutTemplate and use FindControl to update it. Not sure if that's possible (will try shortly).

What's the best way to show totals using a ListView?

UPDATE: Solution here.

flag

5 Answers

vote up 3 vote down check

It turns out that FindControl does work:

CType(MyListView.FindControl("litTotal"), Literal).Text = GetTheSum()

I'd still like to know if there might be a better way though.

link|flag
in ASP.NET web forms (non-MVC), that's the way. – craigmoliver Oct 17 '08 at 14:49
vote up 1 vote down

Use a literal and set the variable in the code-behind.

<asp:Literal ID="litTotal" runat="server" />

code-behind:

litTotal.Text = GetTheSum();
link|flag
vote up 0 vote down

You can't reference the control in the code-behind because it's in the LayoutTemplate. Maybe with FindControl, but I haven't tried that yet.

link|flag
vote up 0 vote down

Thanks craigmoliver this helped me to resolve my issues

link|flag
vote up 0 vote down

Please check this solution http://www.codeproject.com/KB/aspnet/LayoutTemplate%5FDataBind.aspx

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.