主頁(yè) > 知識(shí)庫(kù) > ASP.NET筆記之Calender的使用說(shuō)明

ASP.NET筆記之Calender的使用說(shuō)明

熱門標(biāo)簽:山東防封電銷卡辦理套餐 杭州智能電話機(jī)器人 地圖標(biāo)注位置多的錢 泰州手機(jī)外呼系統(tǒng)軟件 怎樣在地圖標(biāo)注消火栓圖形 濟(jì)源人工智能電話機(jī)器人價(jià)格 廈門四川外呼系統(tǒng) 百度地圖標(biāo)注點(diǎn)擊事件 內(nèi)蒙古智能電銷機(jī)器人哪家強(qiáng)

1、介紹

(1、在Calender中,所有可選擇的符號(hào)會(huì)顯示下劃線,這是因?yàn)樗鼈冊(cè)跒g覽器都會(huì)呈現(xiàn)為鏈接。

     如果讓用戶可以選擇某天、月、周,必須設(shè)置SelectionMode屬性(Day、 DayWeek、DayWeekMonth)

                            

 

(2   控件事件  當(dāng)用戶選擇了某一天或者月,可以用OnSelectionChanged來(lái)觸發(fā)

     通過(guò)  Calendar1.SelectedDate.ToShortDateString();來(lái)獲取所選擇的時(shí)間點(diǎn)
     通過(guò)  Calendar1.SelectedDate.Count.ToString();來(lái)獲取所選擇的天數(shù)

2、實(shí)例

現(xiàn)在通過(guò)一個(gè)實(shí)例來(lái)加深對(duì)日歷控件的理解:

當(dāng)點(diǎn)擊TGIF時(shí),會(huì)在日歷上顯示所選月份的所有星期五

當(dāng)點(diǎn)擊Apply時(shí),會(huì)在日歷上顯示開始到結(jié)束的日期

                    

 Calender.aspx.cs

復(fù)制代碼 代碼如下:

using System;
 using System.Collections.Generic;
 using System.Linq;
 using System.Web;
 using System.Web.UI;
 using System.Web.UI.WebControls;

 public partial class myTest_Calender : System.Web.UI.Page
 {
     protected void Page_Load(object sender, EventArgs e)
     {
         if (!IsPostBack) {
             my_Calendar.VisibleDate = my_Calendar.TodaysDate;
             //將選擇的日期中的月份映射到下拉框中
             Month_List.SelectedIndex = my_Calendar.VisibleDate.Month - 1;
         }
         //顯示到標(biāo)簽中
         lblTodaysDate.Text = "Today is  :" + my_Calendar.TodaysDate.ToShortDateString();
     }
     //選擇一個(gè)日期的時(shí)候觸發(fā)函數(shù)
     protected void Calendar_Select(object sender, EventArgs e)
     {
         lblCountUpdate();
         lblSelectedUpdate();
         txtClear();
     }
     //下拉框觸發(fā)函數(shù)
     protected void Month_SelectedChange(object sender, EventArgs e)
     {
         my_Calendar.SelectedDates.Clear();
         lblSelectedUpdate();
         lblCountUpdate();
         //重新設(shè)置時(shí)間
         my_Calendar.VisibleDate = new DateTime(my_Calendar.VisibleDate.Year,
             Int32.Parse(Month_List.SelectedItem.Value), 1);
         txtClear();
     }

     //重構(gòu)函數(shù)01-修改日期的次數(shù)
     private void lblCountUpdate() {
         lblCount.Text = "the Count of Selected:" + my_Calendar.SelectedDates.Count.ToString();      
     }
     //重構(gòu)函數(shù)02-清楚數(shù)據(jù)
     private void txtClear() {
         txtEnd.Text = "";
         txtStart.Text = "";
     }
     //重構(gòu)函數(shù)03-修改日期
     private void lblSelectedUpdate() {
         if (my_Calendar.SelectedDate != DateTime.MinValue)
             lblSelctedDate.Text = "the  selected day is :" +
                 my_Calendar.SelectedDate.ToShortDateString();
     }
     //按鈕1:顯示所選月份的所有星期五
     protected void btnTgif_Click(object sender, EventArgs e)
     {
         int currnetMonth = my_Calendar.VisibleDate.Month;
         int curretnYear = my_Calendar.VisibleDate.Year;
         //先清除原先日歷位置
         my_Calendar.SelectedDates.Clear();
         //如果日期是星期五則將其添加到日歷中
         for (int i = 1; i = System.DateTime.DaysInMonth(
             curretnYear, currnetMonth); i++) {

                 DateTime datetime = new DateTime(curretnYear, currnetMonth, i);
                 if (datetime.DayOfWeek == DayOfWeek.Friday)
                     my_Calendar.SelectedDates.Add(datetime);
             }
         lblSelectedUpdate();
         lblCountUpdate();
     }
     //按鈕2:
     protected void btnRange_Click(object sender, EventArgs e)
     {
         int currnetMonth = my_Calendar.VisibleDate.Month;
         int curretnYear = my_Calendar.VisibleDate.Year;

         DateTime StartDate = new DateTime(curretnYear, currnetMonth,Int32.Parse(txtStart.Text));
         DateTime EndtartDate = new DateTime(curretnYear, currnetMonth, Int32.Parse(txtEnd.Text));
         my_Calendar.SelectedDates.Clear();
         my_Calendar.SelectedDates.SelectRange(StartDate,EndtartDate);

         lblCountUpdate();
         lblSelectedUpdate();
     }
 }

Calender.aspx
復(fù)制代碼 代碼如下:

%@ Page Language="C#" AutoEventWireup="true" CodeFile="Calender.aspx.cs" Inherits="myTest_Calender" %>

 !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

 html xmlns="http://www.w3.org/1999/xhtml">
 head runat="server">
     title>Calender  Control/title>
 /head>
 body>
     form id="form1" runat="server">
     div>
         h1>Calender  Control/h1>
         h2>/h2>
         asp:Calendar ID="my_Calendar" runat="server"
                     OnSelectionChanged="Calendar_Select">
         /asp:Calendar>
         br  />
         asp:Label ID="lblCount" runat="server" Text="Label">/asp:Label>
         br />
         asp:Label ID="lblTodaysDate" runat="server" Text="Label">/asp:Label>
         br />
         asp:Label ID="lblSelctedDate" runat="server" Text="Label">/asp:Label>

         table>
            tr>
                td>Select a month/td>
                td>
                    asp:DropDownList ID="Month_List" runat="server"
                        AutoPostBack="true"
                        OnSelectedIndexChanged="Month_SelectedChange">
                        asp:ListItem text="January" Value="1" />
                        asp:ListItem text="February" Value="2" />
                        asp:ListItem text="March" Value="3" />
                        asp:ListItem text="April" Value="4" />
                        asp:ListItem text="May" Value="5" />
                        asp:ListItem text="June" Value="6" />
                        asp:ListItem text="July" Value="7" />
                        asp:ListItem text="Augut" Value="8" />
                        asp:ListItem text="September" Value="9" />
                        asp:ListItem text="October" Value="10" />
                        asp:ListItem text="November" Value="11" />
                        asp:ListItem text="December" Value="12" />
                    /asp:DropDownList>
                /td>
                td>
                    asp:Button ID="btnTgif" runat="server"
                        Text="TGIF"
                        OnClick="btnTgif_Click"/>
                /td>
            /tr>
            tr>
                td  colspan="2">nbsp;/td>
            /tr>
            tr>
                td  colspan="2">b>Day Range/b>/td>
            /tr>

            tr>
                td >Starting  Day/td>
                td >Ending  Day/td>
            /tr>

            tr>
                td >
                    asp:TextBox ID="txtStart" runat="server"
                        Width="25" MaxLength="2">/asp:TextBox>
                /td>
                td >
                    asp:TextBox ID="txtEnd" runat="server"
                        Width="25" MaxLength="2">/asp:TextBox>
                /td>
                td >
                    asp:Button ID="btnRange" runat="server" Text="Apply"
                      OnClick="btnRange_Click" style="height: 21px"/>
                /td>
            /tr>
         /table>
     /div>
     /form>
 /body>
 /html>

總結(jié): 

(1  采用一些重構(gòu),將一些函數(shù)方法分離出去,這一塊有一些還沒分離完全

(2  日期控件還有VisiblMonthChanged事件來(lái)處理日歷是否被用戶更改了月份,   e.NewDate.Year 和e.PreviousDate.Year諸如此類的比較

(3 DayRender事件,可以通過(guò)cell和Day來(lái)呈現(xiàn)日期的特殊性,例如周末和節(jié)假日的顏色,  

             e.Day.IsOtherMOnth    e.Day.IsWeekend  等

您可能感興趣的文章:
  • Android自定義日歷Calender代碼實(shí)現(xiàn)
  • 一起學(xué)寫js Calender日歷控件
  • php Calender(日歷)代碼分享
  • php calender(日歷)二個(gè)版本代碼示例(解決2038問(wèn)題)
  • jQuery web 組件 后臺(tái)日歷價(jià)格、庫(kù)存設(shè)置的代碼
  • javascript實(shí)現(xiàn)的淘寶旅行通用日歷組件用法實(shí)例
  • js Calender控件使用詳解
  • Jquery Easyui搜索框組件SearchBox使用詳解(19)
  • jQuery EasyUI框架中的Datagrid數(shù)據(jù)表格組件結(jié)構(gòu)詳解
  • Jquery Easyui日歷組件Calender使用詳解(23)

標(biāo)簽:朔州 臺(tái)州 周口 喀什 新鄉(xiāng) 百色 朝陽(yáng) 洛陽(yáng)

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《ASP.NET筆記之Calender的使用說(shuō)明》,本文關(guān)鍵詞  ASP.NET,筆記,之,Calender,的,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《ASP.NET筆記之Calender的使用說(shuō)明》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于ASP.NET筆記之Calender的使用說(shuō)明的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章