Click here to Skip to main content
15,881,757 members
Articles / Web Development / ASP.NET

Mask TextBox ASP.NET Control

Rate me:
Please Sign up or sign in to vote.
4.84/5 (22 votes)
1 Apr 2009CPOL 96.2K   6.6K   15   5
An ASP.NET textbox to input bank account or credit card numbers or other kinds of formatted text
maskTextBoxTest_net3 - Click to enlarge image

Introduction

This ASP.NET control can be used to input bank account or credit card numbers or other kinds of formatted text.

Background

We needed a way to easily input many bank account numbers in the same page, a quick "paste'n go" approach but also with full format and validation support. The page should also load as fast as possible so the control instances are initialized only when they got the focus and the HTML is not bloated with JavaScript snippets.

Many thanks to Diego Perini (dperini@nwbox.com) who helped me with his samples to get right some caret JavaScript.

Using the Code

If you look in default.aspx, the page that uses the control, pay attention to the following global variable...

ASP.NET
<script type="text/javascript">var mtb;</script>		

... that is shared by the control instances and it gets initialized every time one receives the focus.

Points of Interest

Hopefully I will upload an Ajax version and a Java version soon.

I hope this helps!

History

  • 2nd April, 2009: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
New Zealand New Zealand
Coder

Comments and Discussions

 
GeneralMy vote of 5 Pin
DeepToot1-Apr-11 16:46
DeepToot1-Apr-11 16:46 
GeneralMy vote of 4 Pin
gstolarov2-Apr-09 3:47
gstolarov2-Apr-09 3:47 
GeneralRe: My vote of 4 Pin
radumi7-Apr-09 1:26
radumi7-Apr-09 1:26 
GeneralMy vote of 1 Pin
Pablo Robert2-Apr-09 1:20
Pablo Robert2-Apr-09 1:20 
GeneralRe: My vote of 1 Pin
radumi7-Apr-09 1:24
radumi7-Apr-09 1:24 

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.