Click here to Skip to main content
15,878,945 members
Articles / Web Development / ASP.NET
Article

Formatting your numbers

Rate me:
Please Sign up or sign in to vote.
1.20/5 (4 votes)
21 Oct 2002 116.7K   132   21   8
Now it is simple to format your numbers.

Sample Image - format.jpg

Step 1

Add the source code in WebControl Library Project.

Step 2

Analize the source code.

C#
using System;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.ComponentModel;

//your personal namespace
namespace Personal.Web.UI.WebControls
{
    //WebCustom Control 
    //inherits System.Web.UI.WebControls.TextBox (Framework)
    public class TextBoxMask :System.Web.UI.WebControls.TextBox 
    {
        public TextBoxMask()
        {
        }

        #region Event TextChanged

        //override to event TextChanged 
        //Using PostBack
        protected override void OnTextChanged(EventArgs e)
        {
            TextChange(this,e);
        }

        //function configure your format
        public virtual void TextChange(object sender,EventArgs e)
        {
            string txt = "";

            if (this.Text.Trim() != "")
            {
                double val = double.Parse(this.ParserValue(this.Text));
                txt = this.Format(val,this.ImputMask);
            }

            this.Text = txt;

            if (this.ReleaseMask)
            {
                this.ImputMask = "";
            }

            base.OnTextChanged(e);
        }


        #endregion

        //render this object TextBoxMask
        protected override void Render(HtmlTextWriter output)
        {
            this.AutoPostBack = true;
            base.Render(output);
        }

        //format to using double.ToString()
        protected string Format(double number,string mask)
        {
            string ret = "";
            ret = number.ToString(mask);

            return ret;
        }

        //define to value is only numeric
        protected string ParserValue(string Value)
        {
            int i=0;
            string val = "";
            string ret = "";

            for (i=0;i<Value.Length;i++)
            {
                val = Value.Substring(i,1); 

                if (char.IsDigit(Value,i))
                {
                    ret += val;
                }

            }

            return ret;
        }

        //Your Mask 
        //$#,##0.00;($#,##0.00);Zero Monetary
        private string imputmask;
        public virtual string ImputMask
        {
            set
            {
                imputmask = value;
            }
            get
            {
                return imputmask; 
            }
        }

        //The value without it masks 
        public string ClipText
        {
            get
            {
                if (this.Text != null || this.Text.Trim() !="")
                {
                    return this.ParserValue(this.Text);  
                }
                else
                {
                    return "";
                }
            }
        }

    }
}

Last Step

  1. Compile.
  2. Customize Toolbox and add reference to assembly.
  3. Drag-Drop the TextboxMask control to page.
  4. Run the application.

Something appears similar to the figure.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Brazil Brazil
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionHow do I get a similar format in Winforms Pin
Adinan Kaleem2-Mar-03 20:52
Adinan Kaleem2-Mar-03 20:52 
GeneralNeed help on how to convert the format Pin
Adinan Kaleem1-Mar-03 12:31
Adinan Kaleem1-Mar-03 12:31 
GeneralHorrible switch case stuff... Pin
Stephane Rodriguez.21-Oct-02 10:39
Stephane Rodriguez.21-Oct-02 10:39 
...this gets a poor rate.




How low can you go ?
(enculage MS)

GeneralRe: Horrible switch case stuff... Pin
Esteves21-Oct-02 13:13
Esteves21-Oct-02 13:13 
GeneralRe: Horrible switch case stuff... Pin
Paul Selormey21-Oct-02 18:14
Paul Selormey21-Oct-02 18:14 
GeneralRe: Horrible switch case stuff... Pin
Esteves21-Oct-02 18:23
Esteves21-Oct-02 18:23 
GeneralRe: Horrible switch case stuff... Pin
Daniel Turini21-Oct-02 22:36
Daniel Turini21-Oct-02 22:36 
GeneralRe: Horrible switch case stuff... Pin
Esteves22-Oct-02 2:05
Esteves22-Oct-02 2:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.