I am very new to c# and I am trying to modify my grid data that was retrieved from a SOAP request. Here is the code so far:

<Columns>
        <asp:BoundField DataField="groupName" HeaderText="Area" >
        <ItemStyle HorizontalAlign="Center"></ItemStyle>
            </asp:BoundField>
        <asp:BoundField DataField="totalCount" HeaderText="Total PCs" >
        <ItemStyle HorizontalAlign="Center"></ItemStyle>
            </asp:BoundField>
        <asp:BoundField DataField="availableCount" HeaderText="Available" >
        <ItemStyle HorizontalAlign="Center"></ItemStyle>
            </asp:BoundField>
        <asp:BoundField DataField="offCount" HeaderText="Offline" >
        <ItemStyle HorizontalAlign="Center"></ItemStyle>
            </asp:BoundField>
        <asp:BoundField DataField="inUseCount" HeaderText="In Use" >
        <ItemStyle HorizontalAlign="Center"></ItemStyle>
            </asp:BoundField>
     </Columns>

The problem that I have is the data retrieved from the inUseCount data field is calculated by the server, well, incorrectly. I would like to modify the inUseCount like so:

newInUseCount = inUseCount-offCount

How would I make the calculation as well as display newInUseCount in the same datafield as inUseCount? All my attempts at basic mathematical operations have failed. I'm sure it's something rather simple that I am missing. Here is my c# code as well, if I need to make the new calculations there:

namespace MyStats {
public partial class Stats : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        StatisticsSoapClient proxy = new StatisticsSoapClient();
        GroupStat[] station = proxy.GetGroupedCurrentStats();

        GridView1.DataSource = station;
        GridView1.DataBind();
    }

    protected void GridView1_SelectedIndexChanged(object sender, EventArgs e)
    {

    }
}
}

UPDATE:

I think I almost have the answer in the following code:

<asp:TemplateField HeaderText="In Use (corrected)">
 <ItemTemplate>
      <asp:Label runat="server" Text='<%# Eval("inUseCount") - Eval("offCount") %>' />
 </ItemTemplate>
 <ItemStyle HorizontalAlign="Center"></ItemStyle>
</asp:TemplateField>

However I am getting an error " Operator '-' cannot be applied to operands of type 'object' and 'object'" Upon looking at the values returned, I see that the SOAP returns the values as an integer already, so I'm kinda stuck. If these are already integers, where did the objects come from?

UPDATE - for those who run into the same issue - Found the answer:

<asp:TemplateField HeaderText="New Custom Count">
 <ItemTemplate>
      <asp:Label runat="server"Text='<%# (int)Eval("inUseCount") - (int)Eval("offCount") %>' />
 </ItemTemplate>
</asp:TemplateField>
link|improve this question
GroupStat is probably a partial class you could add a newInUseCount property to it to do the calculation. Just makes it a little tidier in the mark up. – iain Jun 29 '11 at 17:23
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.