快速业务通道

教你打造一个Numeric TextBox控件

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-05-20

1、创建一个新的类库目,将它命名为MyCustomControls

教你打造一个Numeric TextBox控件

2、 添加System.Web引用:

教你打造一个Numeric TextBox控件

3、 Visual Studio 将会自动添加一个名字为"Class1.cs"的文件。请将它删除,然后添加 NumericTextBox.cs 和NumericTextBoxExtention.cs两个文件类。另外创建一个名字为"Resources" 新的 文件夹,在这个文件夹中添加一个名字为"NumericTextBox.js"的JavaScript文件:

教你打造一个Numeric TextBox控件

4、葎阻聞JavaScript廼秘壓怏周嶄?個延凪伏撹荷恬奉來葎"廼秘議彿坿"?萩歌堋和夕?

教你打造一个Numeric TextBox控件 

5、曾倖窃垂猟周脅喘栖糞?NumericTextBox窃?万断岻寂聞喘阻購囚忖partial?  NumericTextBox.cs 喘栖糞?陣周議貸辞?NumericTextBoxExtention.cs 繍淫根侭嗤議忖粁才奉來。

NumericTextBox.cs?

using System;
using System.Web.UI;
[assembly: WebResource("MyCustomControls.Resources.NumericTextBox.js",  "text/javascript")]
namespace MyCustomControls
{
     [ToolboxData(@"<{0}:NumericTextBox Text="""" runat=""server"" ></ {0}:NumericTextBox>")]
     public partial class NumericTextBox : System.Web.UI.WebControls.TextBox
     {
         protected override void OnPreRender(EventArgs e)
         {
             base.OnPreRender(e);
             ClientScriptManager scriptManager =  this.Page.ClientScript;
             string resourceFilePath =  "MyCustomControls.Resources.NumericTextBox.js";
             // This will register a Javascript block witht the name  ''NumericTextBoxScript''
             scriptManager.RegisterClientScriptInclude("NumericTextBoxScript",  scriptManager.GetWebResourceUrl(this.GetType(), resourceFilePath));
             if (this.Type == TextBoxType.Decimal)
                 this.Attributes.Add("onkeydown", string.Format("return  CheckDecimal(this,''{0}'',''{1}'', {2})", NumberOfInteger, NumberOfFraction,  _AllowNegative.ToString().ToLower()));
             else if (this.Type == TextBoxType.Integer)
                 this.Attributes.Add("onkeydown", string.Format("return  CheckInteger({0})", _AllowNegative.ToString().ToLower()));
             this.Attributes.Add("onkeyup", string.Format("return  CheckNegative(this)", _AllowNegative.ToString().ToLower()));
         }
     }
}

NumericTextBoxExtention.cs

namespace MyCustomControls
{
     public partial class NumericTextBox : System.Web.UI.WebControls.TextBox
     {
         public enum TextBoxType
         {
             Integer,
             Decimal
         }
         private int _NumberOfFraction = 0;
         private int _NumberOfInteger = 0;
         private bool _AllowNegative = false;
         private TextBoxType _Type = TextBoxType.Integer;
         public int Nu

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号