PeterBlum.com was active from 2002 - 2013, when ASP.NET Web Forms were all the rage.
Thanks for your patronage!
Feel free to browse this preserved snapshot of the products, demos, and documentation from those days. Then hop over to github.com/plblum to see what Peter's been working on lately.
Peter's Data Entry Suite includes four textboxes that handle numeric data. Here are the features of each numeric TextBox.
Positive and negative <des:IntegerTextBox ID="IntegerTextBox1" runat="server" Width="100px" /> <br/> Positive only <des:IntegerTextBox ID="IntegerTextBox2" runat="server" Width="100px" ShowThousandsSeparator="True" AllowNegatives="False" ShowSpinner="True" />
Positive and negative <des:DecimalTextBox ID="DecimalTextBox1" runat="server" Width="100px" /> <br/> Positive only <des:DecimalTextBox ID="DecimalTextBox2" runat="server" Width="100px" ShowThousandsSeparator="True" AllowNegatives="False" ShowSpinner="True" />
Without Currency Symbol <des:CurrencyTextBox ID="CurrencyTextBox1" runat="server" Width="100px" /> <br/> With Currency Symbol <des:CurrencyTextBox ID="CurrencyTextBox2" runat="server" Width="100px" ShowThousandsSeparator="True" AllowNegatives="False" UseCurrencySymbol="True" ShowSpinner="True" />
Integer only <des:PercentTextBox ID="PercentTextBox1" runat="server" Width="40px" /> <br/> Decimal <des:PercentTextBox ID="PercentTextBox2" runat="server" Width="40px" ShowSpinner="True" WholeNumbersOnly="False" MaxDecimalPlaces="2" />