Click here to Skip to main content
15,881,812 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  
An ASP.NET textbox to input bank account or credit card numbers or other kinds of formatted text
using System;
using Controls;

namespace Mtb
{
	public class Default: System.Web.UI.Page
	{
		protected System.Web.UI.WebControls.Button btnSubmit;
		protected MaskTextBox maskTextBox, maskTextBox1;

		private void Page_Load(object sender, EventArgs e)
		{
			if (!IsPostBack)
			{
				//For maskTextBox see InputMask="NA-ANNA-NNNANNN-NAN" in the asp script, used instead of:
				//maskTextBox.Initialize("NA-ANNA-NNNANNN-NAN");
								
				maskTextBox1.Initialize("NNNN-NNNN-NNNN-NNNN");
			}
		}

		#region Web Form Designer generated code
		override protected void OnInit(EventArgs e)
		{
			//
			// CODEGEN: This call is required by the ASP.NET Web Form Designer.
			//
			InitializeComponent();
			base.OnInit(e);
		}
		
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{    
			this.Load += new System.EventHandler(this.Page_Load);

		}
		#endregion
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

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