Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible duplicate Formatting DataBinder.Eval data

i want to change the format of an item template in a gridview, i want to show the currency..

this is my code:

<asp:TemplateField HeaderText="Monto">
                <ItemTemplate><%# Eval("Monto")%></ItemTemplate>
                <EditItemTemplate>
                <asp:TextBox runat="server" ID="txtMonto" Text='<%# Eval("Monto", "{0:C2}")%>' /><%-- Eval("Price", "{0:C2}")--%>
                </EditItemTemplate>
                <FooterTemplate>
                <asp:TextBox ID="txtfooterMonto" runat="server"></asp:TextBox>                        
                <asp:RequiredFieldValidator runat="server" id="rfvMonto" controltovalidate="txtfooterMonto" Display="None" 
                errormessage="Monto" ValidationGroup="InsertValidationControls"/> 
                </FooterTemplate> 
            </asp:TemplateField>
share|improve this question
What is or isn't happening? – Ann L. Nov 13 '12 at 16:25
i want to set a currency format, can i do it in the "<%# Eval("Monto")%>" – jdrageme01 Nov 13 '12 at 21:14
In the ItemTemplate? Yes, you should be able to do it the same way you do it in the EditItemTemplate. – Ann L. Nov 13 '12 at 21:25
i tried this "<ItemTemplate><%# Eval("Monto", "{0:n}")%></ItemTemplate>" and it works!!, thanks – jdrageme01 Nov 13 '12 at 21:30

1 Answer

You have formatting setup for editing here: EditItemTemplate

But not for viewing here: ItemTemplate

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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