topmodulecontrol.ascx.cs

来自「如果不使用IIS,请先运行 XSP.exe,待提示已侦听 8080端口后」· CS 代码 · 共 25 行

CS
25
字号
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class admin_Portal_TabModules_TopModuleControl : System.Web.UI.UserControl
{
    protected void Page_Init(object sender, EventArgs e)
    {
        //if (!string.IsNullOrEmpty(Request["editmodule"]))
        //{
        //    if (Request["editmodule"].Equals("view"))
        //        Session["editmodule"] = "true";
        //    else
        //        Session["editmodule"] = "false";
        //}

        //if (!IsPostBack && Session["editmodule"] == null)
        //{
        //    Session["editmodule"] = "true";
        //}
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?