首页 > 编程 > .NET > 正文

用VisualC#.NET编写服务器日期控件

2024-07-10 13:10:43
字体:
来源:转载
供稿:网友

  一、序言

  visual c#.net是微软公司出品的一种新的编程语言(以下简称c#),它继承了c语言的一些特性,也加入了一些新的元素。以前用过delphi开发程序的人可能刚开始使用c#的时候,对其有一种似曾相识的感觉(至少包括我)。是的,c#语言的创始人正是以前在borland公司开发出delphi语言的anders hejlsberg。在我开始使用c#开发程序时,就觉得它是一款很棒的开发windows form & web程序的rad工具。

  在开发web程序方面,c#的出现打破了以前的网页开发模式,实现了与开发windows

  form程序一样的所见即所得的功能。c#提供了一些常用的web form control供开发人员使用,并且只需将控件拖入页面中即可,非常简单。但有时这些控件也不能满足开发人员的需要,需要开发人员自己编写用户控件(user control)或自定义控件(custom control)来满足需求。在这里,我将讲解如何在c#中开发服务器控件。

  二、预备知识

  在c#中可以开发两种服务器控件,一个是用户控件(user control)和自定义控件(custom control)。用户控件的本质与页面文件(aspx文件)差不多,是可被其它aspx页面重复使用的html代码段,当然它也包括后台代码(code-behind),后缀名是ascx。所以在开发一些公用的静态页面时(例如页头,页脚)经常用到,但它的缺点是不易继承,不易分发,无法编译成二进制代码来进行部署。但是自定义控件的功能就强大许多,它可以被编译成二进制代码(dll文件),可以被扩展、继承、分发。就像web form control一样,其实它们每个控件就是一个dll文件。

  开发用户控件比较简单,就像编写一个aspx页面一样,在这里就不介绍了。本文对象是自定义控件。服务器控件的基类是system.web.ui.control。如果要开发可视化的服务器控件,那我们需要从system.web.ui.webcontrols来继承,否则从system.web.ui.control继承。

  服务器控件在设计时以runat=”server”脚本代码嵌入到aspx文件中来表示此控件是在服务器端运行的。在服务器控件所在页面提交回传(postback)过程中是依靠viewstate(视图状态)来维护控件状态的。所以我们在设计服务器控件属性时,其值应保存在viewstate中。

  三、代码编写

  c#中有一个日历控件calendar,但是现在我需要一个可以下拉的日历控件,并且初始时不显示日历,当我点击下拉按钮时才弹出,并且当选择了日期,日历会自动隐藏且选择的日期值会显示到相应的输入框中。显然calendar控件不能满足我的需要,但是稍后我会在我的自定义控件中用到它。

  首先新建项目,在项目类型中选择visual c#项目,在模板列表中选择web控件库,输入项目名称aquacalendar,然后选择项目所在目录,点击【确定】按钮。c#将会生成基本的框架代码。将项目中的类文件和类名改名为datepicker(即日期控件的类名)。由于datepicker是可视化控件,所以我们必须从system.web.ui.webcontrols继承。并且它包括一个输入框,一个按钮和日历控件,需要在datepicker类中声明它们。像这种以多个服务器控件组合的控件成为复合控件。代码如下,比较重要的方法和代码在注释中会加以说明:

using system;
using system.web.ui;
using system.web.ui.webcontrols;
using system.componentmodel;
using system.drawing;

namespace aquacalendar
{
 [defaultproperty("text"), //在属性工具箱中显示的默认属性
 toolboxdata("<{0}:datepicker runat=server>")]
 public class datepicker : system.web.ui.webcontrols.webcontrol , ipostbackeventhandler
 {
  //选择日期按钮的默认样式
  private const string _buttondefaultstyle = "border-right: gray 1px solid; border-top: gray 1px solid; border-left: gray 1px solid; cursor: hand; border-bottom: gray 1px solid;";

  //按钮默认文本

  private const string _buttondefaulttext = "...";
  private system.web.ui.webcontrols.calendar _calendar;

  public override controlcollection controls
  {
   get
   {
    ensurechildcontrols(); //确认子控件集都已被创建
    return base.controls;
   }
  }

  //创建子控件(服务器日历控件)

  protected override void createchildcontrols()
  {
   controls.clear();
   _calendar = new calendar();
   _calendar.id = mycalendarid;
   _calendar.selecteddate = datetime.parse(text);
   _calendar.titleformat = titleformat.monthyear;
   _calendar.nextprevformat = nextprevformat.shortmonth;
   _calendar.cellspacing = 0;
   _calendar.font.size = fontunit.parse("9pt");
   _calendar.font.name = "verdana";
   _calendar.selecteddaystyle.backcolor = colortranslator.fromhtml("#333399");
   _calendar.selecteddaystyle.forecolor = colortranslator.fromhtml("white");
   _calendar.daystyle.backcolor = colortranslator.fromhtml("#cccccc");
   _calendar.todaydaystyle.backcolor = colortranslator.fromhtml("#999999");
   _calendar.todaydaystyle.forecolor = colortranslator.fromhtml("aqua");
   _calendar.dayheaderstyle.font.size = fontunit.parse("8pt");
   _calendar.dayheaderstyle.font.bold = true;
   _calendar.dayheaderstyle.height = unit.parse("8pt");
   _calendar.dayheaderstyle.forecolor = colortranslator.fromhtml("#333333");
   _calendar.nextprevstyle.font.size = fontunit.parse("8pt");
   _calendar.nextprevstyle.font.bold = true;
   _calendar.nextprevstyle.forecolor = colortranslator.fromhtml("white");
   _calendar.titlestyle.font.size = fontunit.parse("12pt");
   _calendar.titlestyle.font.bold = true;
   _calendar.titlestyle.height = unit.parse("12pt");
   _calendar.titlestyle.forecolor = colortranslator.fromhtml("white");
   _calendar.titlestyle.backcolor = colortranslator.fromhtml("#333399");
   _calendar.othermonthdaystyle.forecolor = colortranslator.fromhtml("#999999");
   _calendar.nextprevformat = nextprevformat.customtext;
   _calendar.nextmonthtext = "下月";
   _calendar.prevmonthtext = "上月";
   _calendar.style.add("display","none"); //默认不显示下拉日历控件
   _calendar.selectionchanged += new eventhandler(_calendar_selectionchanged);
   this.controls.add(_calendar);
  }
  [
   category("appearance"), //该属性所属类别,参见图
   defaultvalue(""), //属性默认值
   description("设置该日期控件的值。") //属性的描述
  ]

  public string text
  {
   get
   {
    ensurechildcontrols();
    return (viewstate["text"] == null)?system.datetime.today.tostring("yyyy-mm-dd"):viewstate["text"].tostring();
   }
   set
   {
    ensurechildcontrols();
    datetime dt = system.datetime.today;
    try
    {
     dt = datetime.parse(value);
    }
    catch
    {
     throw new argumentoutofrangeexception("请输入日期型字符串(例如:1981-04-29)!");
    }

    viewstate["text"] = dateformat == calendarenum.longdatetime?dt.tostring("yyyy-mm-dd"):dt.tostring("yyyy-m-d");
   }
  }

  //重载服务器控件的enabled属性,将选择日期按钮变灰(禁用)

  public override bool enabled
  {
   get
   {
    ensurechildcontrols();
    return viewstate["enabled"] == null?true:(bool)viewstate["enabled"];
   }
   set
   {
    ensurechildcontrols();
    viewstate["enabled"] = value;
   }
  }

  public string buttonstyle
  {
   get
   {
    ensurechildcontrols();
    object o = viewstate["buttonsytle"];
    return (o == null)?_buttondefaultstyle:o.tostring();
   }
   set
   {
    ensurechildcontrols();
    viewstate["buttonsytle"] = value;
   }
  }

  [
   defaultvalue(calendarenum.longdatetime),
  ]

  public calendarenum dateformat
  {
   get
   {
    ensurechildcontrols();
    object format = viewstate["dateformat"];
    return format == null?calendarenum.longdatetime:(calendarenum)format;
   }
   set
   {
    ensurechildcontrols();
    viewstate["dateformat"] = value;
    datetime dt = datetime.parse(text);
    text=dateformat == calendarenum.longdatetime?dt.tostring("yyyy-mm-dd"):dt.tostring("yyyy-m-d");
   }
  }

  [
   browsable(false),
   designerserializationvisibility(designerserializationvisibility.hidden)
  ]

  public string mycalendarid //复合控件id
  {
   get
   {
    ensurechildcontrols();
    return this.clientid+"_mycalendar";
   }
  }

  [
   browsable(false),
   designerserializationvisibility(designerserializationvisibility.hidden)
  ]

  public string mycalendarname //复合控件名称
  {
   get
   {
    ensurechildcontrols();
    return this.uniqueid+":mycalendar";
   }
  }

  [
   browsable(false),
   designerserializationvisibility(designerserializationvisibility.hidden)
  ]

  public string datepickerinputid //复合控件中输入框的id
  {
   get
   {
    ensurechildcontrols();
    return this.clientid+"_dateinput";
   }
  }

  [
   browsable(false),
   designerserializationvisibility(designerserializationvisibility.hidden)
  ]

  public string datepickerinputname //复合控件中输入框的名称
  {
   get
   {
    ensurechildcontrols();
    return this.uniqueid+":dateinput";
   }
  }

  [
   browsable(false),
   designerserializationvisibility(designerserializationvisibility.hidden)
  ]

  public string datepickerbuttonid //复合控件中按钮的id
  {
   get
   {
    ensurechildcontrols();
    return this.clientid+"_datebutton";
   }
  }

  [
   browsable(false),
   designerserializationvisibility(designerserializationvisibility.hidden)
  ]

  public string datepickerbuttonname //复合控件中按钮的名称
  {
   get
   {
    ensurechildcontrols();
    return this.uniqueid+":datebutton";
   }
  }

  public string buttontext
  {
   get
   {
    ensurechildcontrols();
    return viewstate["buttontext"] == null?_buttondefaulttext:(string)viewstate["buttontext"];
   }
   set
   {
    ensurechildcontrols();
    viewstate["buttontext"] = value;
   }
  }

  ///
  /// 将此控件呈现给指定的输出参数。
  ///

  /// 要写出到的 html 编写器

  protected override void render(htmltextwriter output)
  {
   //在页面中输出控件时,产生一个表格(二行二列),以下是表格的样式
   output.addattribute(htmltextwriterattribute.cellspacing, "0");
   output.addattribute(htmltextwriterattribute.border, "0");
   output.addattribute(htmltextwriterattribute.cellpadding, "0");

   output.addstyleattribute("left", this.style["left"]);
   output.addstyleattribute("top", this.style["top"]);
   output.addstyleattribute("position", "absolute");

   if (width != unit.empty)
   {
    output.addstyleattribute(htmltextwriterstyle.width, width.tostring());
   }
   else
   {
    output.addstyleattribute(htmltextwriterstyle.width, "200px");
   }

   output.renderbegintag(htmltextwritertag.table); //输出表格
   output.renderbegintag(htmltextwritertag.tr); //表格第一行
   output.addattribute(htmltextwriterattribute.width, "90%");
   output.renderbegintag(htmltextwritertag.td);

   //以下是第一行第一列中文本框的属性及其样式设置

   if (!enabled)
   {
    output.addattribute(htmltextwriterattribute.readonly, "true");
   }

   output.addattribute(htmltextwriterattribute.type, "text");
   output.addattribute(htmltextwriterattribute.id, datepickerinputid);
   output.addattribute(htmltextwriterattribute.name, datepickerinputname);
   output.addattribute(htmltextwriterattribute.value, text);
   output.addstyleattribute(htmltextwriterstyle.width, "100%");
   output.addstyleattribute(htmltextwriterstyle.height, "100%");
   output.addstyleattribute(htmltextwriterstyle.fontfamily, font.name);
   output.addstyleattribute(htmltextwriterstyle.fontsize, font.size.tostring());
   output.addstyleattribute(htmltextwriterstyle.fontweight, font.bold?"bold":"");
   output.addstyleattribute(htmltextwriterstyle.backgroundcolor, colortranslator.tohtml(backcolor));
   output.addstyleattribute(htmltextwriterstyle.color, colortranslator.tohtml(forecolor));
   output.renderbegintag(htmltextwritertag.input); //输出文本框
   output.renderendtag();
   output.renderendtag();
   output.addattribute(htmltextwriterattribute.width, "*");
   output.renderbegintag(htmltextwritertag.td);

   //以下是第一行第二列中按钮的属性及其样式设置

   if (!enabled)
   {
    output.addattribute(htmltextwriterattribute.disabled, "true");
   }

   output.addattribute(htmltextwriterattribute.type, "submit");
   output.addattribute(htmltextwriterattribute.id, datepickerbuttonid);
   output.addattribute(htmltextwriterattribute.name, datepickerbuttonname);
   output.addattribute(htmltextwriterattribute.value, buttontext);
   output.addstyleattribute(htmltextwriterstyle.width, "100%");
   output.addattribute(htmltextwriterattribute.onclick, page.getpostbackeventreference(this)); //点击按钮时需要回传服务器来触发后面的onclick事件

   output.addattribute(htmltextwriterattribute.style, buttonstyle);
   output.renderbegintag(htmltextwritertag.input); //输出按钮
   output.renderendtag();
   output.renderendtag();

   output.renderendtag();
   output.renderbegintag(htmltextwritertag.tr);
   output.addattribute(htmltextwriterattribute.colspan, "2");
   output.renderbegintag(htmltextwritertag.td);
   _calendar.rendercontrol(output); //将日历子控件输出
   output.renderendtag();
   output.renderendtag();
   output.renderendtag();
  }

  //复合控件必须继承ipostbackeventhandler接口,才能继承raisepostbackevent事件

  public void raisepostbackevent(string eventargument)
  {
   onclick(eventargs.empty);
  }

  protected virtual void onclick(eventargs e)
  {
   //点击选择日期按钮时,如果日历子控件没有显示则显示出来并将文本框的值赋值给日历子控件
   if (_calendar.attributes["display"] != "")
   {
    _calendar.selecteddate = datetime.parse(text);
    _calendar.style.add("display","");
   }
  }

  //复合控件中的日历控件日期变化事件

  private void _calendar_selectionchanged(object sender, eventargs e)
  {
   //当选择的日期变化时,将所选日期赋值给文本框并将日历子控件隐藏
   text = _calendar.selecteddate.tostring();
   _calendar.style.add("display","none");
  }
 }
}


  在上面的代码中,需要注意以下几点:

  ·如果你想将此控件的某些属性供重载,则在声明属性前加上virtual关键字;

  ·在页面输出此控件时(即在render事件中),是先定义子控件的样式或属性,然后再产生子控件;

  ·在隐藏日历子控件时,建议不要使用visible属性来显示/隐藏,使用visible=false隐藏时服务器端将不会将日历控件html代码发送给客户端,会导致复合控件装载日历控件的表格会空白一块出来,影响页面的布局。所以使用样式display=none设置来使日历控件在客户端隐藏,但是html代码依然存在于页面中;

  四、结束语

  在编写服务器控件时,需要一定的html语言基础,也要清楚.net程序的请求处理方式。服务器控件封装了客户端行为及逻辑判断,无需开发者添加更多代码。当然,有些地方使用服务器控件可以带来方便,但是也增加了服务器的负荷。有时适当的结合javascript使一些代码在客户端运行,可提高web应用程序效率
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表