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

📄 discussphoto_up.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;

public partial class user_discuss_discussphoto_up : NetCMS.Web.UI.UserPage
{
    Discuss dis = new Discuss();
    Photo pho = new Photo();
    protected void Page_Load(object sender, EventArgs e)
    {
        
        if (!IsPostBack)
        {
            string DisIDs = Request.QueryString["DisID"];
            sc.InnerHtml = Show_scs(DisIDs);
            string PhotoID =Request.QueryString["PhotoID"];
            DataTable dt_photo = dis.sel_discussInfo(PhotoID,7);

            if (dt_photo.Rows[0]["UserNum"].ToString() != NetCMS.Global.Current.UserNum)
            {
                PageError("这张图片不是你的你无权修改", "discussPhotoalbumlist.aspx?DisID=" + DisIDs + "");
            }

            DataTable dts1 = dis.sel_discussInfo(DisIDs,8);
            this.Photoalbum.DataSource = dts1;
            this.Photoalbum.DataTextField = "PhotoalbumName";
            this.Photoalbum.DataValueField = "PhotoalbumID";
            this.Photoalbum.DataBind();

            this.PhotoName.Text = dt_photo.Rows[0]["PhotoName"].ToString();
            this.PhotoContent.Text = dt_photo.Rows[0]["PhotoContent"].ToString();
            if (dis.sel_discussInfo(dt_photo.Rows[0]["PhotoalbumID"].ToString(), 11).Rows[0]["PhotoalbumName"].ToString()!= "")
            {
                for (int s = 0; s < this.Photoalbum.Items.Count - 1; s++)
                {
                    if (this.Photoalbum.Items[s].Text == dis.sel_discussInfo(dt_photo.Rows[0]["PhotoalbumID"].ToString(), 11).Rows[0]["PhotoalbumName"].ToString())
                    {
                        this.Photoalbum.Items[s].Selected = true;
                    }
                }

            }
            no.InnerHtml = Show_no(dt_photo.Rows[0]["PhotoUrl"].ToString().Replace("{@UserdirFile}", NetCMS.Config.UIConfig.dirDumm + "/" + NetCMS.Config.UIConfig.UserdirFile));
        }
    }
    protected void server_Click(object sender, EventArgs e)
    {
        string DisIDs = Request.QueryString["DisID"];

        string PhotoIDs = Request.QueryString["PhotoID"];
        string PhotoUrl1 = "";
        if (this.pic_p_1url.Value == "")
        {
            PhotoUrl1 = pho.sel_getUserPhoto(PhotoIDs).Rows[0]["PhotoUrl"].ToString();
        }

        else
        {
            PhotoUrl1 = pic_p_1url.Value;
        }
        string PhotoIDsa = Request.QueryString["PhotoID"];
        string PhotoName = Request.Form["PhotoName"].ToString();
        string PhotoalbumID = this.Photoalbum.SelectedValue;
        string PhotoContent = Request.Form["PhotoContent"].ToString();

        if (PhotoIDsa == null) 
            PhotoIDsa = "";
        if (PhotoName == null) 
            PhotoName = "";
        if (PhotoalbumID == null) 
            PhotoalbumID = "";
        if (PhotoContent == null) 
            PhotoContent = "";

        DateTime PhotoTime = DateTime.Now;

        if (Photoalbum.SelectedValue != "")
        {
            if (pho.Update(PhotoName, PhotoTime, PhotoalbumID, PhotoContent, PhotoUrl1, PhotoIDs) == 0)
            {
                PageError("修改图片错误", "discussPhotoalbumlist.aspx?DisID=" + DisIDs + "");
            }    
            else
            {
                PageRight("修改图片成功", "discussPhotoalbumlist.aspx?DisID=" + DisIDs + "");
            }
        }
        PageError("修改图片错误图片分类不能为空", "");

    }
    string Show_no(string pURL)
    {
        string nos = "<td class=\"list_link\" ><img src=\"" + NetCMS.Publish.CommonData.getUrl() + pURL + "\" width=\"90\" height=\"90\" id=\"pic_p_1\" /></td>";
        return nos;
    }
    string Show_scs(string DisID)
    {
        string scs = "<table width=\"100%\"  border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"toptable\">";
        scs += "<tr><td height=\"1\" colspan=\"2\"></td></tr>";
        scs +=
        scs += "<tr><td width=\"57%\"  class=\"sysmain_navi\"  style=\"PADDING-LEFT: 14px\" >相册管理</td>";
        scs += "<td width=\"43%\"  class=\"topnavichar\"  style=\"PADDING-LEFT: 14px\" ><div align=\"left\">位置导航:<a href=\"../main.aspx\" target=\"sys_main\" class=\"list_link\">首页</a><img alt=\"\" src=\"../../sysImages/folder/navidot.gif\" border=\"0\" /><a href=\"discussPhotoalbumlist.aspx?DisID=" + DisID + "\" class=\"menulist\">相册管理</a><img alt=\"\" src=\"../../sysImages/folder/navidot.gif\" border=\"0\" />修改图片</div></td></tr></table>";
        scs += "<table width=\"100%\" border=\"0\" align=\"center\" cellpadding=\"3\" cellspacing=\"1\" class=\"Navitable\">";
        scs += "<tr> <td><span class=\"topnavichar\" style=\"PADDING-LEFT: 14px\"><a href=\"discussPhotoalbumlist.aspx?DisID=" + DisID + "\" class=\"menulist\">相册首页</a> <a href=\"discussphoto_add.aspx?DisID=" + DisID + "\" class=\"menulist\">添加图片</a> &nbsp;&nbsp;<a href=\"discussphotoclass.aspx?DisID=" + DisID + "\" class=\"menulist\">相册分类</a> &nbsp;&nbsp; <a href=\"discussPhotoalbum.aspx?DisID=" + DisID + "\" class=\"menulist\">添加相册</a></td></tr></table>";
        return scs;
    }
}

⌨️ 快捷键说明

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