自定义日期控件 (ASP.net)
2024-07-10 13:03:49
供稿:网友
控件代码如下:
<script?runat="server">...
????private?void?calendar1_selectionchanged(?system.object?sender,?system.eventargs??e??)
????...{
????????textbox1.text?=?calendar2.selecteddate.toshortdatestring();
????????panel1.visible?=?false;
????
????}
????private?void?onclick(?system.object?sender,?system.eventargs??e??)
????...{
?????????if?(?panel1.visible?)
?????????...{
????????????panel1.visible?=?false;
?????????}
?????????else
?????????...{
?????????????panel1.visible?=?true;
?????????}
????
????}
script>
<asp:textbox?id="textbox1"?runat="server">asp:textbox>
<asp:button?id="button1"?onclick="onclick"?runat="server"?size="43"?text="..."?height="22"?width="35"?type="button">asp:button>
<div?id="divcalendar">
????<asp:panel?id="panel1"?runat="server"?width="172px"?height="182px"?visible="false">
????????<asp:calendar?id="calendar2"?runat="server"?width="200px"?height="180px"?onselectionchanged="calendar1_selectionchanged"?borderwidth="2px"?backcolor="white"?forecolor="black"?font-size="8pt"?font-names="verdana"?bordercolor="#999999"?borderstyle="outset"?daynameformat="firstletter"?cellpadding="4">
????????????<todaydaystyle?forecolor="black"?backcolor="#cccccc">todaydaystyle>
????????????<selectorstyle?backcolor="#cccccc">selectorstyle>
????????????<nextprevstyle?verticalalign="bottom">nextprevstyle>
????????????<dayheaderstyle?font-size="7pt"?font-bold="true"?backcolor="#cccccc">dayheaderstyle>
????????????<selecteddaystyle?font-bold="true"?forecolor="white"?backcolor="#666666">selecteddaystyle>
????????????<titlestyle?font-bold="true"?bordercolor="black"?backcolor="#999999">titlestyle>
????????????<weekenddaystyle?backcolor="#ffffcc">weekenddaystyle>
????????????<othermonthdaystyle?forecolor="#808080">othermonthdaystyle>
????????asp:calendar>
????asp:panel>
div>
调用页面代码:
<script?runat="server">...
????//?insert?page?code?here
????//
script>
<html>
<head>
????<title>testing?the?calendartitle>
head>
<body>
????<form?runat="server">
????????<expo:cuscalender?id="cuscalender"?runat="server">expo:cuscalender>
????form>
body>
html>
本文来源于网页设计爱好者web开发社区http://www.html.org.cn收集整理,欢迎访问。