在ASP.NET中实现弹出日历的具体方法

发布时间:2022-04-16 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了在ASP.NET中实现弹出日历的具体方法脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。
ctlCalendar.ascx的代码:
复制代码 代码如下:

<%@ Control Language="c#" AutoEventWireup="false" Codebehind="ctlCalendar.ascx.cs" InherITs="calendar.ctlCalendar" TargetSchema="http://schemas.microsoft.COM/Intellisense/ie5" enableViewstate="True"%>
<asp: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">
&nbsp;<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
 }
}

脚本宝典总结

以上是脚本宝典为你收集整理的在ASP.NET中实现弹出日历的具体方法全部内容,希望文章能够帮你解决在ASP.NET中实现弹出日历的具体方法所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。