MyWorkflow.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 QueryWorkflow.
  15. /// </summary>
  16.     public partial class MyWorkflow : PortalPage
  17. {
  18. protected void Page_Load(object sender, System.EventArgs e)
  19. {
  20. if(!this.IsPostBack)
  21. {
  22. this.WorkflowGrid.Initialize(this.UserValidator);
  23.                 // this.WorkflowGrid.ShowHeader = false;
  24. }
  25. }
  26. #region Web Form Designer generated code
  27. override protected void OnInit(EventArgs e)
  28. {
  29. //
  30. // CODEGEN: This call is required by the ASP.NET Web Form Designer.
  31. //
  32. InitializeComponent();
  33. base.OnInit(e);
  34. }
  35. /// <summary>
  36. /// Required method for Designer support - do not modify
  37. /// the contents of this method with the code editor.
  38. /// </summary>
  39. private void InitializeComponent()
  40. {    
  41. }
  42. #endregion
  43. }
  44. }