MyInstance.aspx.cs
资源名称:H3_OA.rar [点击查看]
上传用户:li2971742
上传日期:2021-11-18
资源大小:39096k
文件大小:2k
源码类别:
OA系统
开发平台:
C#
- 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;
- namespace OThinker.H3.Portal
- {
- /// <summary>
- /// Summary description for MyInstance.
- /// </summary>
- public partial class MyInstance : PortalPage
- {
- private OThinker.H3.Instance.InstanceState State
- {
- get
- {
- string state = System.Web.HttpUtility.UrlDecode(this.Request.QueryString[Param_State]);
- return OThinker.H3.Instance.InstanceStateConvertor.ToState(state);
- }
- }
- protected void Page_Load(object sender, System.EventArgs e)
- {
- System.Data.DataTable table = Query.QueryInstance(
- null,
- new string[] { this.UserValidator.UserID },
- null,
- OThinker.H3.Instance.InstanceContext.UnspecifiedID,
- this.State,
- null,
- null,
- OThinker.H3.WorkflowTemplate.WorkflowTemplate.NullWorkflowVersion,
- System.DateTime.MinValue,
- System.DateTime.MaxValue,
- null,
- OThinker.H3.Instance.PriorityType.Unspecified,
- OThinker.Data.BoolMatchValue.Unspecified,
- OThinker.Data.BoolMatchValue.Unspecified);
- this.InstanceGridView.BindDataGrid(table);
- }
- #region Web Form Designer generated code
- override protected void OnInit(EventArgs e)
- {
- //
- // CODEGEN: This call is required by the ASP.NET Web Form Designer.
- //
- InitializeComponent();
- base.OnInit(e);
- }
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- }
- #endregion
- }
- }