planmanage.aspx
来自「asp开发的项目管理系统,能够跟进工程进度」· ASPX 代码 · 共 56 行
ASPX
56 行
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="PlanManage.aspx.cs" Inherits="Content_Admin_PlanManage" StylesheetTheme="ContentMS" Theme="ContentMS" %>
<%@ Register Namespace="DataCalendarControl" TagPrefix="dc" %>
<!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>无标题页</title>
</head>
<body style="margin:0;" bgcolor="#D8E7FA">
<form id="form1" runat="server">
<table class="TableCss" bgcolor="#D8E7FA" cellSpacing="0" cellpadding="0" width="100%" border="1">
<tr>
<td background="../../Images/HT_top.jpg" colspan="2" height="25">
<table height="25" cellpadding="0" cellspacing="0" border="0">
<tr>
<td height="25" valign="middle" align="center"> <img src="../../Images/HT_top_ioc.GIF" /></td>
<td><font class="AdminTitle"> <b>工作进度管理</b></font></td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<dc:DataCalendar ID="PlanCalendar" runat="server" BackColor="White" BorderColor="#3366CC" BorderWidth="1px" DayNameFormat="Shortest" Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Height="200px" SelectionMode="None" Width="100%" DayField="CreateDate" DayStyle-HorizontalAlign="Left" NextPrevStyle-HorizontalAlign="NotSet" CellPadding="1" NextMonthText="下一个月>>" PrevMonthText="<<上一个月">
<SelectedDayStyle BackColor="#009999" Font-Bold="True" ForeColor="#CCFF99" />
<TodayDayStyle BackColor="#99CCCC" ForeColor="White" />
<SelectorStyle BackColor="#99CCCC" ForeColor="#336666" />
<OtherMonthDayStyle ForeColor="#999999" />
<DayStyle BorderColor="#D8E7FA" HorizontalAlign="Left" />
<NextPrevStyle Font-Size="8pt" ForeColor="#CCCCFF" />
<DayHeaderStyle BackColor="#99CCCC" Height="1px" ForeColor="#336666" />
<TitleStyle BackColor="#003399" Font-Bold="True"
Font-Size="10pt" ForeColor="#CCCCFF" BorderColor="#3366CC" BorderWidth="1px" Height="25px" />
<WeekendDayStyle BackColor="#CCCCFF" />
<ItemTemplate>
<table width="100%" cellpadding="0" cellspacing="1">
<tr>
<td align="left">
<img src="../../Images/ball.jpg" />
<a href='../../Portal/ViewContent.aspx?ContentID=<%# Container.DataItem["ID"] %>' target="_blank">
<%# SysOperation.FormatStringLength(Container.DataItem["Name"].ToString(),SysInfomation.CalendarStringLength) %></a>
</td>
</tr>
</table>
</ItemTemplate>
</dc:DataCalendar>
</td>
</tr>
<tr>
<td><asp:Button ID="NewContentBtn" runat="server" Text="发表新的工作进度" Width="150px" CssClass="ButtonCss" OnClick="NewContentBtn_Click" /></td>
</tr>
</table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?