• 分类添加代码


    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head id="Head1" runat="server">
        <title>无标题页</title>
               <link href="../images/style/style.css"  type="text/css" rel="stylesheet">
    </head>
    <body>
        <form id="form1" runat="server">
        <div>
            <table bgcolor="#c4d8ed" border="0" cellpadding="0" cellspacing="0" width="100%">
                <tbody>
                    <tr>
                        <td>
                        </td>
                        <td>
                            <table align="center" border="1" cellpadding="4" cellspacing="1" class="toptable grid fixed">
                                <tbody>
                                    <tr>
                                        <td class="category" style="height: 17px">
                                        </td>
                                        <td align="center" class="category" style="height: 17px">
                                            &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
                                        </td>
                                    </tr>
                                </tbody>
                            </table>
                            <br />
                            <div>
                                &nbsp;</div>
                            <table align="center" border="1" cellpadding="4" cellspacing="1" class="toptable grid fixed"
                                style="color: #0000ff">
                                <tbody>
                                    <tr>
                                        <td align="center" colspan="1" style="height: 41px">
                                        </td>
                                        <td align="center" colspan="6" style="height: 41px; text-align: center">
                                            <strong>编辑分类</strong></td>
                                    </tr>
                                    <tr>
                                        <td align="right" colspan="1" style="height: 39px">
                                            名称:</td>
                                        <td align="left" colspan="6" style="height: 39px">
                                            <asp:TextBox ID="TbName" runat="server" Width="441px"></asp:TextBox></td>
                                    </tr>
                                    <tr>
                                        <td align="right" colspan="1" style="height: 53px">
                                            备注:</td>
                                        <td align="left" colspan="6" style="height: 53px">
                                            <asp:TextBox ID="TbIntro" runat="server" Height="145px" TextMode="MultiLine" Width="631px"></asp:TextBox></td>
                                    </tr>
                                    <tr>
                                        <td align="center" style="height: 29px">
                                        </td>
                                        <td align="center" style="height: 29px">
                                            </td>
                                        <td colspan="5" style="height: 29px">
                                            &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<asp:Button ID="BtEdit" runat="server" OnClick="BtVerfly_Click"
                                                Text="编辑" />
                                            &nbsp; &nbsp;
                                            <asp:Button ID="BtDel" runat="server" OnClick="BtDel_Click" Text="关闭" />
                                            &nbsp;&nbsp; &nbsp; &nbsp;&nbsp;<span class="t2"></span></td>
                                    </tr>
                                    <tr>
                                        <td colspan="1">
                                        </td>
                                        <td colspan="6">
                                        </td>
                                    </tr>
                                </tbody>
                            </table>
                            <div>
                            </div>
                        </td>
                        <td>
                        </td>
                    </tr>
                </tbody>
            </table>
       
        </div>
        </form>
    </body>
    </html>

    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;

    namespace domain.UI.images.News
    {
        public partial class TypeEdit : domain.BLL.AdminPage
        {
            protected void Page_Load(object sender, EventArgs e)
            {
                this.BtDel.Attributes["onclick"] = "window.close()";
                if (!Page.IsPostBack)
                {
                   //Power(this.U_Account, this.MIDS[Convert.ToInt32(domain.BLL.ModelList.系统设置)]);
                    BindUpdate();
                }
            }
         
            public void BindUpdate()
            {
                string action = this.GetRequest("action");
                if (action == "upd")
                {
                    string sql = string.Format("select * from [newssort] where column_id='{0}'", this.GetRequest("id"));
                    DataTable dt = this.Db.GetTable(sql);
                    if (dt != null)
                    {
                        this.TbName.Text = Convert.ToString(dt.Rows[0]["column_name"]);
                        this.TbIntro.Text = Convert.ToString(dt.Rows[0]["column_intro"]);
                    }
                }
            }
            protected void BtVerfly_Click(object sender, EventArgs e)
            {
                string action = this.GetRequest("action");
                string name = this.TbName.Text.Trim();
                string intro = this.TbIntro.Text.Trim();
                string parentid = this.GetRequest("parentid");
                parentid = parentid.Length < 1 ? ("0") : (parentid);
                string depth = this.GetRequest("depth");


                string message = "";
                string sql = "";
                switch (action)
                {
                    case "add":
                        message = "添加";
                        int depthint = Convert.ToInt32(depth) + 1;
                        if (depthint >= 4)
                        {
                            this.ShowMessage("该类没有子类", "");
                            return;
                        }
                        sql = string.Format("insert into newssort([column_id],[column_name],[parent_id],[column_depth],[Column_Order],[column_intro]) select '{0}','{1}','{2}',{3},max(column_order)+1,'{4}' from newssort", System.Guid.NewGuid().ToString().Replace("-", "").ToUpper().Substring(1, 6), name, parentid, depthint, intro);
                        break;
                    case "upd":
                        message = "修改";
                        sql = string.Format("update [newssort] set Column_Name='{0}',Column_Intro='{1}' where [column_ID]='{2}'", name, intro, this.GetRequest("id"));
                        break;
                    default:
                        break;
                }
                if (this.Db.GetState(sql))
                {
                    this.ShowMessage("成功" + message, "window.opener.location.reload()");
                }
                else
                {
                    this.ShowMessage("操作失败请联系管理员!!!", "");
                }

            }

            protected void BtDel_Click(object sender, EventArgs e)
            {
                // Response.Write(this.Script());
            }
        }
    }

  • 相关阅读:
    opengl中的Floatbuffer和IntBuffer与java中数据的存储方式不同的解决方法,编辑一个自己的BufferUtil工具类
    android程序与java程序的差别。
    android的json解析
    java数组转list,list转数组。
    java中字符串常量,堆栈的区别和字符串函数intern(),String s=new String(“abc”)中abc在内存的分配
    AsyncTask学习
    关于自定义拦截器配置,及拦截器的作用范围
    struts2中的文件上传和文件下载
    Struts2的配置及入门案例
    Action中动态方法的调用 Action中通配符的使用 Result的配置
  • 原文地址:https://www.cnblogs.com/bestsaler/p/1835623.html
Copyright © 2020-2023  润新知