TreeView.aspx.cs
资源名称:OAJP.rar [点击查看]
上传用户:jdb8708888
上传日期:2013-05-29
资源大小:19971k
文件大小:2k
源码类别:
WEB源码(ASP,PHP,...)
开发平台:
C#
- using System;
- using System.Collections;
- using System.ComponentModel;
- using System.Data;
- using System.Data.SqlClient;
- using System.Drawing;
- using System.Configuration;
- using System.Web;
- using System.Web.SessionState;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using System.Web.UI.HtmlControls;
- namespace UDS.SubModule.AssginRule
- {
- /// <summary>
- /// TreeView 的摘要说明。
- /// </summary>
- public class frmAddRight : System.Web.UI.Page
- {
- public string SrcID;
- public string DisplayType;
- private string UserName;
- private void Page_Load(object sender, System.EventArgs e)
- {
- // 在此处放置用户代码以初始化页面
- UserName = Request.Cookies["UserName"].Value.ToString();
- if(!Page.IsPostBack)
- {
- //绑定权限select
- if ((Request["SrcID"] == null) && (Request["DisplayType"] == null))
- {
- SrcID = "";
- DisplayType="";
- }
- else
- {
- SrcID = Request["SrcID"].ToString();
- DisplayType = Request["DisplayType"].ToString();
- }
- }
- }
- #region Web Form Designer generated code
- override protected void OnInit(EventArgs e)
- {
- //
- // CODEGEN:该调用是 ASP.NET Web 窗体设计器所必需的。
- //
- InitializeComponent();
- base.OnInit(e);
- }
- /// <summary>
- /// 设计器支持所需的方法 - 不要使用代码编辑器修改
- /// 此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.ID = "frmAddRight";
- this.Load += new System.EventHandler(this.Page_Load);
- }
- #endregion
- private void cmdAdd_ServerClick(object sender, System.EventArgs e)
- {
- // UDS.Components.AssignRights ar = new UDS.Components.AssignRights(classID,displaytype,(int)UDS.Components.AssignRightsAction.RULE_ADD,ObjID.Text,Act.Items[Act.SelectedIndex].Value,"");
- // try
- // {
- // if(ar.execute())
- // Response.Redirect("RightListview.aspx?ObjID="+ar.SrcID+"&displayType="+ar.DisplayType);
- // }
- // catch(Exception ex)
- // {
- // UDS.Components.Error.Log(ex.ToString());
- // Server.Transfer("../Error.aspx");
- // }
- }
- }
- }