MyReceipt.aspx.cs
资源名称:H3_OA.rar [点击查看]
上传用户:li2971742
上传日期:2021-11-18
资源大小:39096k
文件大小:1k
源码类别:
OA系统
开发平台:
C#
- using System;
- using System.Collections;
- using System.Configuration;
- using System.Data;
- using System.Web;
- using System.Web.Security;
- using System.Web.UI;
- using System.Web.UI.HtmlControls;
- using System.Web.UI.WebControls;
- using System.Web.UI.WebControls.WebParts;
- namespace OThinker.H3.Portal
- {
- public partial class MyReceipt : PortalPage
- {
- protected void Page_Load(object sender, EventArgs e)
- {
- if (!this.IsPostBack)
- {
- System.Data.DataTable table = Query.QueryWorkItem(
- null,
- null,
- WorkflowTemplate.WorkflowTemplate.AllWorkflowVersion,
- null,
- null,
- null,
- System.DateTime.MinValue,
- System.DateTime.MaxValue,
- OThinker.H3.WorkItem.WorkItemState.Unspecified,
- OThinker.H3.Instance.PriorityType.Unspecified,
- null,
- this.UserValidator.UserID,
- OThinker.Data.BoolMatchValue.Unspecified,
- OThinker.Data.BoolMatchValue.Unspecified);
- this.WorkItemGrid.BindDataGrid(table);
- }
- }
- }
- }