在ASP.NET中实现弹出日历
ctlcalendar.ascx的源代码:
<%@ control language="" autoeventwireup="false" codebehind="ctlcalendar.ascx.cs" inherits="calendar.ctlcalendar" targetschema="" enableviewstate="true"%>
<:textbox id="textbox1" runat="server"></asp:textbox>
<input type="button" id="button1" runat="server" value="..."><br>
<asp:panel id="pnlcalendar" runat="server" style="position: absolute">
<asp:calendar id="calendar1" runat="server" firstdayofweek="monday" showgridlines="true" backcolor="white"
daynameformat="full" forecolor="black" font-size="8pt" font-names="verdana" bordercolor="#999999"
cellpadding="4" width="200px" height="180px">
<todaydaystyle forecolor="black" backcolor="#cccccc"></todaydaystyle>
<selectorstyle backcolor="#cccccc"></selectorstyle>
<daystyle wrap="false" borderstyle="dashed"></daystyle>
<nextprevstyle verticalalign="bottom"></nextprevstyle>
<dayheaderstyle font-size="x-small" font-names="宋体" wrap="false" borderstyle="dashed" backcolor="#cccccc"></dayheaderstyle>
<selecteddaystyle font-bold="true" forecolor="white" backcolor="#666666"></selecteddaystyle>
<titlestyle font-size="small" font-bold="true" borderstyle="solid" bordercolor="black" backcolor="#999999"></titlestyle>
<weekenddaystyle backcolor="lightsteelblue"></weekenddaystyle>
<othermonthdaystyle forecolor="gray"></othermonthdaystyle>
</asp:calendar>
</asp:panel>
ctlcalendar.ascx.cs的源代码:
namespace calendar
{
using system;
using system.data;
using system.drawing;
using system.web;
using system.web.ui.webcontrols;
using system.web.ui.htmlcontrols;
/// <summary>
/// ctlcalendar 的摘要说明。
/// </summary>
public class ctlcalendar : system.web.ui.usercontrol
{
protected system.web.ui.webcontrols.textbox textbox1;
protected system.web.ui.webcontrols.panel pnlcalendar;
protected system.web.ui.htmlcontrols.htmlinputbutton button1;
protected system.web.ui.webcontrols.calendar calendar1;
private void page_load(object sender, system.eventargs e)
{
// 在此处放置用户代码以初始化页面
if (!page.ispostback)
{
this.textbox1.text = system.datetime.now.toshortdatestring();
this.pnlcalendar.attributes.add("style","display: none; position: absolute");
}
else
{
string id = page.request.form["__eventtarget"].substring(0,page.request.form["__eventtarget"].indexof(":"));
if (id != this.id)
{
this.pnlcalendar.attributes.add("style","display: none; position: absolute");
}
else
{
this.pnlcalendar.attributes.add("style","position: absolute");
}
}
page.registerclientscriptblock("script_panel" + this.id,
"<script> function on"+this.id+"click() { if("+this.id+
"_pnlcalendar.style.display == "none") "+this.id+
"_pnlcalendar.style.display = ""; else "+this.id+
"_pnlcalendar.style.display = "none"; } </script>");
this.button1.attributes.add("onclick","on"+this.id+"click()");
}
#region web 窗体设计器生成的代码
override protected void oninit(eventargs e)
{
//
// codegen: 该调用是 asp.net web 窗体设计器所必需的。
//
initializecomponent();
base.oninit(e);
}
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器
/// 修改此方法的内容。
/// </summary>
private void initializecomponent()
{
this.calendar1.selectionchanged += new system.eventhandler(this.calendar1_selectionchanged);
this.load += new system.eventhandler(this.page_load);
}
#endregion
#region 日历选择时的事件
private void calendar1_selectionchanged(object sender, system.eventargs e)
{
this.textbox1.text = calendar1.selecteddate.toshortdatestring();
this.pnlcalendar.attributes.add("style","display: none; position: absolute");
}
#endregion
}
}
上一篇: 杨紫琼水晶养生,郑秀文定期体检
下一篇: 百分之百纯果汁 如何分辨有四招
推荐阅读
-
在Vue2.0中实现用户权限控制
-
剑指offer面试题53:在排序数组中查找数字(Java 实现)
-
在kettle中实现数据验证和检查
-
在SQLServer中实现ORACLE的Sequence
-
JQuery Ajax 在asp.net中的使用并调用后台实例讲解
-
在HTML中如何实现链接选择?详见内容_html/css_WEB-ITnose
-
鼠标在文字上悬浮时弹出悬浮层效果的实现代码
-
document.getElementsByName和document.getElementById 在IE与FF中不同实现
-
在Python中该如何实现Java的重写与重载
-
在bootstrap中如何实现table支持高度百分比