I have this textbox that should show currency values to 2 decimal numbers. I would like to do using the "Text" property of textboxes. Is that possible?
<asp:TextBox ID="txtImponibile" runat="server" Width="120px" Enabled="False" ></asp:TextBox>
Thanks.
You can wrap TextBox in an <asp:UpdatePanel>
and add AsyncPostBackTrigger of TextChanged
event. You can verify, validate and change the string from the server side using that.