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

OA系统

开发平台:

C#

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Web;
  7. using System.Web.SessionState;
  8. using System.Web.UI;
  9. using System.Web.UI.WebControls;
  10. using System.Web.UI.HtmlControls;
  11. namespace OThinker.H3.Portal
  12. {
  13. /// <summary>
  14. /// Summary description for MyHandledInstance.
  15. /// </summary>
  16.     public partial class MyHandledInstance : PortalPage
  17. {
  18. protected void Page_Load(object sender, System.EventArgs e)
  19. {
  20. System.Data.DataTable table = Query.QueryHandledInstance(
  21. null, 
  22. null,
  23.                     OThinker.H3.WorkflowTemplate.WorkflowTemplate.NullWorkflowVersion, 
  24.                     OThinker.H3.Instance.InstanceState.Unspecified,
  25. System.DateTime.MinValue, 
  26. System.DateTime.MaxValue,
  27.                     this.UserValidator.UserID);
  28.             this.InstanceGridView.BindDataGrid(table);
  29. }
  30. #region Web Form Designer generated code
  31. override protected void OnInit(EventArgs e)
  32. {
  33. //
  34. // CODEGEN: This call is required by the ASP.NET Web Form Designer.
  35. //
  36. InitializeComponent();
  37. base.OnInit(e);
  38. }
  39. /// <summary>
  40. /// Required method for Designer support - do not modify
  41. /// the contents of this method with the code editor.
  42. /// </summary>
  43. private void InitializeComponent()
  44. {    
  45. }
  46. #endregion
  47. }
  48. }