MyReceipt.aspx.cs
上传用户:li2971742
上传日期:2021-11-18
资源大小:39096k
文件大小:1k
源码类别:

OA系统

开发平台:

C#

  1. using System;
  2. using System.Collections;
  3. using System.Configuration;
  4. using System.Data;
  5. using System.Web;
  6. using System.Web.Security;
  7. using System.Web.UI;
  8. using System.Web.UI.HtmlControls;
  9. using System.Web.UI.WebControls;
  10. using System.Web.UI.WebControls.WebParts;
  11. namespace OThinker.H3.Portal
  12. {
  13.     public partial class MyReceipt : PortalPage
  14.     {
  15.         protected void Page_Load(object sender, EventArgs e)
  16.         {
  17.             if (!this.IsPostBack)
  18.             {
  19.                 System.Data.DataTable table = Query.QueryWorkItem(
  20.                    null,
  21.                    null,
  22.                    WorkflowTemplate.WorkflowTemplate.AllWorkflowVersion,
  23.                    null,
  24.                    null,
  25.                    null,
  26.                    System.DateTime.MinValue,
  27.                    System.DateTime.MaxValue, 
  28.                    OThinker.H3.WorkItem.WorkItemState.Unspecified, 
  29.                    OThinker.H3.Instance.PriorityType.Unspecified,
  30.                    null,
  31.                    this.UserValidator.UserID,
  32.                    OThinker.Data.BoolMatchValue.Unspecified,
  33.                     OThinker.Data.BoolMatchValue.Unspecified);
  34.                 this.WorkItemGrid.BindDataGrid(table);
  35.             }
  36.         }
  37.     }
  38. }