My97DatePicker日期控件是一个非常好用的日期控件,功能非常优秀的日期控件.
对实现页面刷新完善的很好,用日期控件时可以有比较好的享受,这次的OA日期记事功能也得益于此控件,具体效果图如下:
部分代码:
Default页布局一个Calendar日期控件
1
2
3
4
5
|
< div > < asp:Calendar ID = "Calendar1" runat = "server" Width = "100%" ShowGridLines = "True" ondayrender = "Calendar1_DayRender" > </ asp:Calendar > </ div > |
Default页cs代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Data; using System.Text; public partial class _Default : System.Web.UI.Page { private DataTable table ; protected void Page_Load( object sender, EventArgs e) { } protected void Calendar1_DayRender( object sender, DayRenderEventArgs e) { //获取现在绑定的日期 CalendarDay day = e.Day; //获取当前日期的单元格 TableCell cell = e.Cell; int currentMonth = DateTime.Now.Month ; cell.Controls.Clear(); table = PlanOperator.SelectPlanByMonth(day.Date); if (day.Date.Month >= currentMonth) { StringBuilder builder = new StringBuilder(); builder.AppendFormat( "<font color='Blue'><h5>{0}</h5></font><img src='images/add.png' xhtml" id="highlighter_934032">
控件编辑后台cs:
以上就是关于My97DatePicker日期控件实现OA日期记事功能的全部内容,希望大家会喜欢。 延伸 · 阅读
精彩推荐
|