⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 special_manage.aspx.cs

📁 最好用的站点内容管理系统 全部源代码都有
💻 CS
字号:
//======================================================
//==     (c)2008 aspxcms inc by NeTCMS v1.0              ==
//==          Forum:bbs.aspxcms.com                   ==
//==         Website:www.aspxcms.com                  ==
//======================================================
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using NetCMS.Content;
using NetCMS.Model;

public partial class manage_channel_special_manage : NetCMS.Web.UI.ManagePage
{
    public static string ChID = string.Empty;
    public static string Action = string.Empty;
    Channel rd = new Channel();
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            if (SiteID != "0")
            {
                PageError("分站没权限操作", "javascript:history.back();", true);
            }
            ChID = Request.QueryString["ChID"];
            Action = Request.QueryString["Action"];
            if (ChID != null && ChID != string.Empty)
            {
                copyright.InnerHtml = CopyRight;
                if (Action != string.Empty && Action != null)
                {
                    this.sSpecial.Items.Clear();
                    switch (Action.ToString())
                    {
                        case "until":
                            this.tSpecial.Items.Clear();
                            this.ButtonAction.Text = "执行 > 合并专题";
                            this.StatAction.Value = "Toutil";
                            this.Panel1.Visible = true;
                            this.Panel2.Visible = true;
                            this.Panel3.Visible = false;
                            GetSpecialList((this.sSpecial), 0, 0);
                            GetSpecialList((this.tSpecial), 0, 0);
                            break;
                        case "move":
                            this.ButtonAction.Text = "执行 > 移动专题";
                            this.StatAction.Value = "ToMove";
                            this.Panel1.Visible = true;
                            this.Panel2.Visible = true;
                            this.Panel3.Visible = false;
                            GetSpecialList((this.sSpecial), 0, 0);
                            GetSpecialList((this.tSpecial), 0, 0);
                            break;
                        default:
                            this.ButtonAction.Text = "执行 > 批量设置";
                            this.StatAction.Value = "ToSet";
                            this.Panel1.Visible = true;
                            this.Panel2.Visible = false;
                            this.Panel3.Visible = true;
                            GetSpecialList((this.sSpecial), 0, 0);
                            //GetSpecialList((this.tSpecial), 0, 0);
                            break;
                    }
                }
            }
            else
            {
                PageError("错误的参数", "javascript:history.back();", true);
            }
        }
    }

    protected void GetSpecialList(DropDownList lst, int ParentID, int Layer)
    {
        IDataReader dr = rd.getSpecialList(ParentID, int.Parse(ChID.ToString()));
        while (dr.Read())
        {
            ListItem it = new ListItem();
            string stxt = "";
            it.Value = dr["ID"].ToString();
            if (Layer > 0)
                stxt = "┝";
            for (int i = 1; i < Layer; i++)
            {
                stxt += "┉";
            }
            it.Text = stxt + dr["specialCName"].ToString();
            lst.Items.Add(it);
            GetSpecialList(lst, int.Parse(dr["ID"].ToString()), (Layer + 1));
        }
    }

    protected void ButtonAction_Click(object sender, EventArgs e)
    {
        int sSpecialID = int.Parse(this.sSpecial.SelectedValue);
        int tSpecialID = int.Parse(this.tSpecial.SelectedValue);
        switch (Action)
        {
            case "until":
                if (sSpecialID == tSpecialID)
                {
                    PageError("目标专题和源不能一样", "javascript:history.back();", true);
                }
                rd.utilSpecial(sSpecialID, tSpecialID, int.Parse(ChID.ToString()));
                PageRight("合并专题成功", "special_list.aspx?ChID=" + ChID + "", true);
                break;
            case "move":
                if (sSpecialID == tSpecialID)
                {
                    PageError("目标专题和源不能一样", "javascript:history.back();", true);
                }
                rd.moveSpecial(sSpecialID, tSpecialID);
                PageRight("移动专题成功", "special_list.aspx?ChID=" + ChID + "", true);
                break;
            default:
                break;
        }
    }
}

⌨️ 快捷键说明

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