QueryInstanceByRecurrences.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 UnfinishedInstance.
- /// </summary>
- public partial class QueryInstanceByRecurrences : PortalPage
- {
- private int LeastRecurrences = 0;
- private string Originator = null;
- private void ParseParams()
- {
- if (this.Request.QueryString[Param_UserID] != null && this.Request.QueryString[Param_UserID] != "")
- {
- this.Originator = this.Request.QueryString[Param_UserID];
- }
- string strLeastRecurrences = this.Request.QueryString[Param_LeastRecurrences];
- if (strLeastRecurrences != null && strLeastRecurrences != "")
- {
- this.LeastRecurrences = int.Parse(strLeastRecurrences);
- }
- }
- protected void Page_Load(object sender, System.EventArgs e)
- {
- // 验证是否具有管理员权限
- if (!this.UserValidator.ValidateViewReport())
- {
- this.NotifyMessage(LackOfAuth);
- }
- this.ParseParams();
- System.Data.DataTable table = Query.QueryInstanceByRecurrences(
- this.Originator,
- this.LeastRecurrences);
- this.InstanceGridView.RecurrencesColumn.Visible = true;
- 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
- }
- }