ChengDa_English/SGGL/FineUIPro.Web/HSSE/SitePerson/PersonInfoClock.aspx

56 lines
2.7 KiB
Plaintext

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="PersonInfoClock.aspx.cs" Inherits="FineUIPro.Web.HSSE.SitePerson.PersonInfoClock" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>一键考勤</title>
<link href="~/res/css/common.css" rel="stylesheet" type="text/css" />
<style type="text/css">
.LabelColor {
color: Red;
font-size: x-small;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<f:PageManager ID="PageManager1" AutoSizePanelID="SimpleForm1" runat="server" />
<f:Form ID="SimpleForm1" ShowBorder="false" ShowHeader="false" AutoScroll="true"
BodyPadding="10px" runat="server" RedStarPosition="BeforeText" LabelAlign="Right">
<Rows>
<f:FormRow ColumnWidths="30% 70%">
<Items>
<f:CheckBox runat="server" Label="进场" ID="ckIn" AutoPostBack="true" OnCheckedChanged="ck_CheckedChanged"></f:CheckBox>
<f:DatePicker ID="txtInTime" DateFormatString="yyyy-MM-dd HH:mm"
runat="server" Label="进场时间" EnableEdit="true" ShowTime="true" ShowSecond="false">
</f:DatePicker>
</Items>
</f:FormRow>
<f:FormRow ColumnWidths="30% 70%">
<Items>
<f:CheckBox runat="server" Label="出场" ID="ckOut" AutoPostBack="true" OnCheckedChanged="ck_CheckedChanged"></f:CheckBox>
<f:DatePicker ID="txtOutTime" DateFormatString="yyyy-MM-dd HH:mm"
runat="server" Label="出场时间" EnableEdit="true" ShowTime="true" ShowSecond="false">
</f:DatePicker>
</Items>
</f:FormRow>
</Rows>
<Toolbars>
<f:Toolbar ID="Toolbar1" Position="Top" ToolbarAlign="Right" runat="server">
<Items> <f:Label runat="server" CssClass="LabelColor"
Text="一键打卡人员:已同步集团实名制在岗人员"> </f:Label>
<f:ToolbarFill runat="server"></f:ToolbarFill>
<f:Button ID="btnSave" Icon="Accept" runat="server" ToolTip="确定" ValidateForms="SimpleForm1"
OnClick="btnSave_Click">
</f:Button>
<f:Button ID="btnClose" EnablePostBack="false" ToolTip="关闭" runat="server" Icon="SystemClose" MarginRight="5px">
</f:Button>
</Items>
</f:Toolbar>
</Toolbars>
</f:Form>
</form>
</body>
</html>