自定义日历控件

  1using System;
  2using System.Collections.Generic;
  3using System.Text;
  4using System.Web.UI;
  5using System.Web.UI.WebControls;
  6using System.Web.UI.HtmlControls;
  7using System.Drawing;
  8using System.Collections;
  9using System.Collections.Specialized;
 10using System.ComponentModel;
 11/*
 12 * * ExpentDate:日期控件
 13 * * Writor:Susan
 14 * * DateTime:2006/12/18
 15 */

 16namespace CtrolBox
 17{
 18    /// <summary>
 19    /// 日历控件
 20    /// </summary>

 21    public class ExpentDate: WebControl, INamingContainer,IPostBackDataHandler
 22    {
 23        控件属性
 32        属性定义
166        控件实现
346    }

347}

348注册到专案中(web.config)
349<pages>
350    <controls>
351        <!-- 注册自定义控件 -->
352        <add tagPrefix="ppmis" namespace="CtrolBox" assembly="CtrolBox"/>
353        <!-- 注册用户控件 -->
354        <add tagPrefix="ppmis" src="~/Controls/UnitCtl.ascx" tagName="UnitCtl"/>
355    </controls>
356</pages>
357
358

posted on 2006-12-19 21:04  freeliver54  阅读(1364)  评论(2编辑  收藏  举报

导航