⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 checkout.aspx.cs

📁 可以嵌入到OA中
💻 CS
字号:
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Timers;
using UDS.Components;

namespace UDS.SubModule.Login
{
	/// <summary>
	/// checkout 的摘要说明。
	/// </summary>
	public class checkout : System.Web.UI.Page
	{
	
		private void Page_Load(object sender, System.EventArgs e)
		{
			//考勤操作
			try
			{
				WA_Duty wd = new WA_Duty(Int32.Parse(Request.Cookies["UserID"].Value.Trim()));
				int DutyStat = 0;
				DutyStat = wd.HaveCompletedDuty(DateTime.Now);
				//检查当天是否已经完成上班考勤
				if((DutyStat!=-1) && (DutyStat!=0))
				{
						if(wd.CheckStatus(DutyAction.OffDuty)) //没有早退
						{
							wd.RecordOffDutyData(DutyStat,DateTime.Now,true,"");
							//弹出新页面表示成功
							Response.Write("<script language=javascript>window.open('../WorkAttendance/checksucessful.aspx?login=out','_blank','height=200,width=400,status=no,toolbar=no,menubar=no,location=no')</script>");
						}
						else//早退
						{
							//跳转到填写理由页面
							Response.Write("<script language=javascript>location.href='../WorkAttendance/Default.aspx?notnormal=1&login=out';</script>");
						}	
				}
				Response.Write("<script>window.parent.parent.location.href='logout.aspx';</script>");
			}
			
			catch(Exception ex)
			{
				UDS.Components.Error.Log(ex.Message);
				Server.Transfer("../Error.aspx");
			}
		}

		#region Web Form Designer generated code
		override protected void OnInit(EventArgs e)
		{
			//
			// CODEGEN:该调用是 ASP.NET Web 窗体设计器所必需的。
			//
			InitializeComponent();
			base.OnInit(e);
		}
		
		/// <summary>
		/// 设计器支持所需的方法 - 不要使用代码编辑器修改
		/// 此方法的内容。
		/// </summary>
		private void InitializeComponent()
		{    
			this.Load += new System.EventHandler(this.Page_Load);

		}
		#endregion

		private void btnexit_Click(object sender, System.EventArgs e)
		{
			Server.Transfer("logout.aspx");
		}

		private void Repeater1_ItemDataBound(object sender, System.Web.UI.WebControls.RepeaterItemEventArgs e)
		{
		
		}

	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -