?? leftpage.aspx.cs
字號(hào):
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 RSFlow
{
public class LeftPage : System.Web.UI.Page
{
protected System.Web.UI.WebControls.HyperLink HyperLink1;
protected System.Web.UI.WebControls.HyperLink HyperLink3;
protected System.Web.UI.WebControls.HyperLink HyperLink4;
protected CoreControl.NavigationControl NavigationControl1;
protected System.Web.UI.WebControls.HyperLink HyperLink2;
private void Page_Load(object sender, System.EventArgs e)
{
CoreControl.ModelList VList=new CoreControl.ModelList();
VList.UserID=Page.Request.Cookies["UserID"].Value;
VList.JobID=Page.Request.Cookies["JobID"].Value;
VList.DepID=Page.Request.Cookies["DepID"].Value;
VList.UserGroupID=Page.Request.Cookies["UserGroupID"].Value;
VList.GetPopedomFlowTable(ref this.NavigationControl1);
}
#region Web 窗體設(shè)計(jì)器生成的代碼
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: 該調(diào)用是 ASP.NET Web 窗體設(shè)計(jì)器所必需的。
//
InitializeComponent();
base.OnInit(e);
}
/// <summary>
/// 設(shè)計(jì)器支持所需的方法 - 不要使用代碼編輯器修改
/// 此方法的內(nèi)容。
/// </summary>
private void InitializeComponent()
{
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -