asp.net小孔子cms中的数据添加修改

题外话:我为什么研究小孔子的cms,从我自己写一个cms我就开始研究起别人的cms,早期我是研究netcms,但这系统过于庞大,看上去十分的累,也没那个精力,于是打算从一套比较小的开始研究,于是小孔子cms就进入了我的研究范围。没过多久我就放下我手中的cms,决定研究清楚有了更多经验再继续写完我没有完成的cms。

最近都在看小孔子cms的代码,其添加与修改数据十分方便,做下笔记,代码主要提取自小孔子cms,去掉了不用的函数并把相关代码写到一个文件中:

结合上面的图片,当我们要往数据库中添加数据时,代码如下:

dataHandle doh = new dataHandle();    
doh.AddBind(tbxWebName, "link_webname", true);    
doh.AddBind(tbxWebUrl, "link_weburl", true);    
doh.AddBind(tbxLogoUrl, "link_logourl", true);    
doh.AddBind(tbxOrderNum, "link_ordernum", false);    
doh.AddBind(ddlStyle, "link_style", false);    
doh.AddBind(rblAudit, "link_audit", false);    
doh.Add();    
int result = Convert.ToInt32(doh.InsertData("db_link"));    
Response.Write(result.ToString());   
绑定数据指的是从数据库中读取一条记录,并自动绑定到表单的控件中,代码如下(假设读取的id=8):


代码如下:

dataHandle doh = new dataHandle();     
doh.AddBind(tbxWebName, "link_webname", true);     
doh.AddBind(tbxWebUrl, "link_weburl", true);     
doh.AddBind(tbxLogoUrl, "link_logourl", true);     
doh.AddBind(tbxOrderNum, "link_ordernum", false);     
doh.AddBind(ddlStyle, "link_style", false);     
doh.AddBind(rblAudit, "link_audit", false);     
doh.ConditionExpress = "id = 8";     
doh.tableName = "db_link";     
doh.BindWhenUp();

修改数据与添加数据差不多:  


代码如下:

dataHandle doh = new dataHandle();     
doh.ConditionExpress = "id = 8";     
doh.AddBind(tbxWebName, "link_webname", true);     
doh.AddBind(tbxWebUrl, "link_weburl", true);     
doh.AddBind(tbxLogoUrl, "link_logourl", true);     
doh.AddBind(tbxOrderNum, "link_ordernum", false);     
doh.AddBind(ddlStyle, "link_style", false);     
doh.AddBind(rblAudit, "link_audit", false);     
doh.Add();     
int result = Convert.ToInt32(doh.UpData("db_link"));     
Response.Write(result);

而aspx文件详细代码: XML/HTML复制代码
网站:
<asp:TextBox ID="tbxWebName" runat="server"></asp:TextBox>   
<br />   
<br />   
域名:<asp:TextBox ID="tbxWebUrl" runat="server"></asp:TextBox><br />   
<br />   
logo地址:<asp:TextBox ID="tbxLogoUrl" runat="server" Width="198px"></asp:TextBox><br />   
<br />   
排序:<asp:TextBox ID="tbxOrderNum" runat="server"></asp:TextBox><br />   
<br />   
是否审核:<asp:RadioButtonList ID="rblAudit" runat="server" RepeatDirection="Horizontal">   
    <asp:ListItem Value="1">是</asp:ListItem>   
    <asp:ListItem Selected="True" Value="0">否</asp:ListItem>   
</asp:RadioButtonList>   
<br />   
<br />   
显示方式:     
<br />   
<asp:DropDownList ID="ddlStyle" runat="server">   
    <asp:ListItem Value="1">文字</asp:ListItem>   
    <asp:ListItem Value="2">图片</asp:ListItem>   
    <asp:ListItem Value="3">待定</asp:ListItem>   
</asp:DropDownList><br />   
<br />   
<asp:Button ID="btnOk" runat="server" Text="提交" OnClick="btnOk_Click" /> <asp:Button   
    ID="btnEnter" runat="server" OnClick="btnEnter_Click" Text="绑定" />   
<asp:Button ID="btnUp" runat="server" OnClick="btnUp_Click" Text="更改" /><br />   
<br />   
<asp:Label ID="lblResult" runat="server" Text="结果"></asp:Label></div>   
我对代码做了很多注释,大家有兴趣可以看看: 


代码如下:

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 System.Data.OleDb;     
using System.Text;

namespace mycms.DataOper.Data     
{     
    /// <summary>     
    /// dataHandle 的摘要说明     
    /// </summary>     
    public class dataHandle     
    {     
        public dataHandle()     
        {     
            this.conn = new OleDbConnection("Provider = Microsoft.Jet.OLEDB.4.0;Data Source = |DataDirectory|mycms.mdb");     
            this.conn.Open();     
            this.cmd = conn.CreateCommand();     
            this.da = new OleDbDataAdapter();     
        }

#region webform     
        //这个用来存放包括控件类型,字段,是否是字符串         
        public ArrayList alBinderItems = new ArrayList(8);

//这个只用来存放字段,值         
        public ArrayList alFieldItems = new ArrayList(8);

/// <summary>         
        /// 建立文本框到数据字段的绑定         
        /// </summary>           
        public void AddBind(TextBox tbx, string field, bool isStringType)     
        {     
            alBinderItems.Add(new BinderItem(tbx, field, isStringType));     
        }

/// <summary>     
        /// 下拉列表     
        /// </summary>     
        public void AddBind(DropDownList dd, string field, bool isStringType)     
        {     
            alBinderItems.Add(new BinderItem(dd, field, isStringType));     
        }

public void AddBind(RadioButtonList rb, string field, bool isStringType)     
        {     
            alBinderItems.Add(new BinderItem(rb, field, isStringType));     
        }

/// <summary>     
        /// 多选框     
        /// </summary>     
        public void AddBind(CheckBoxList cb, string field, bool isStringType)     
        {     
            alBinderItems.Add(new BinderItem(cb, field, isStringType));     
        }

/// <summary>     
        /// 需要修改数据时取出数据库中的记录填充到表单中     
        /// </summary>     
        public void BindWhenUp()     
        {     
            if (alBinderItems.Count == 0)     
            {     
                return;     
            }     
            BinderItem bi;

StringBuilder sbSql = new StringBuilder("select ");     
            for (int i = 0; i < alBinderItems.Count; i++)     
            {     
                bi = (BinderItem)alBinderItems[i];     
                //防止出现变量名     
                sbSql.Append("[" + bi.field + "]");     
                sbSql.Append(",");     
            }     
            sbSql.Remove(sbSql.Length - 1,1);     
            sbSql.Append(" from ");     
            sbSql.Append(this.tableName);     
            sbSql.Append(" where 1 = 1 and ");     
            sbSql.Append(this.ConditionExpress);

this.sqlCmd = sbSql.ToString();     
            dt = this.GetDataTable();     
            //如果没有记录则抛出异常     
            if (dt.Rows.Count == 0)     
            {     
               throw new ArgumentException("记录不存在");     
            }

DataRow dr = dt.Rows[0];     
            for (int j = 0; j < alBinderItems.Count; j++)     
            {     
                bi = (BinderItem)alBinderItems[j];     
                bi.SetValue(dr[bi.field].ToString());     
            }

}

/// <summary>         
        /// 该方法实现从alBinderItems到alFieldItems的转换,目的:alFieldItems可以转为DbKeyItem,操作数据库时需要用到DbKeyItem     
        /// </summary>         
        public void Add()     
        {     
            if (this.alBinderItems.Count == 0)     
            {     
                return;     
            }     
            BinderItem bi = null;

for (int i = 0; i < alBinderItems.Count; i++)     
            {     
                bi = ((BinderItem)alBinderItems[i]);     
                AddFieldItem(bi.field, bi.GetValue());     
            }

}

/// <summary>             
        /// 添加一个字段/值对到数组中             
        /// </summary>             
        public void AddFieldItem(string _fieldName, object _fieldValue)     
        {     
            _fieldName = "[" + _fieldName + "]";     
            //遍历看是否已经存在字段名

for (int i = 0; i < this.alFieldItems.Count; i++)     
            {     
                if (((DbKeyItem)this.alFieldItems[i]).fieldName == _fieldName)     
                {     
                    throw new ArgumentException("字段已经存在");     
                }     
            }     
            this.alFieldItems.Add(new DbKeyItem(_fieldName, _fieldValue));     
        }    
        #endregion

#region 操作数据

#region 这里声明有关数据操作的必要参数           
        //当前所使用的数据库连接

protected OleDbConnection conn;

//当前所使用的命令对象     
        protected OleDbCommand cmd = new OleDbCommand();

//当前所使用的数据库适配器     
        protected OleDbDataAdapter da;

//当前的SQL语句     
        public string sqlCmd = string.Empty;

//当前操作所涉及的数据库表名     
        public string tableName = string.Empty;

//SQL条件     
        public string ConditionExpress;

//用于存放从数据库中取得的数据记录     
        protected DataTable dt;    
        #endregion

/// <summary>     
        /// 根据当前alFieldItem数组中存储的字段/值向指定表中添加一条记录。返回自动增长id     
        /// </summary>     
        /// <param name="_talbeName"></param>     
        /// <returns></returns>     
        public int InsertData(string _talbeName)     
        {     
            this.tableName = _talbeName;     
            this.sqlCmd = "insert into " + this.tableName + "(";     
            string temValue = " values(";     
            for (int i = 0; i < this.alFieldItems.Count; i++)     
            {     
                this.sqlCmd += ((DbKeyItem)alFieldItems[i]).fieldName + ",";     
                temValue += "@para" + i.ToString() + ",";     
            }     
            //分别去掉,         
            this.sqlCmd = Input.CutComma(this.sqlCmd) + ")" + Input.CutComma(temValue) + ")";

//声明执行语句     
            this.cmd.CommandText = this.sqlCmd;     
            GenParameters();     
            cmd.ExecuteNonQuery();     
            int autoId = 0;     
            try    
            {     
                cmd.CommandText = "select @@identity as id";     
                autoId = Convert.ToInt32(cmd.ExecuteScalar());     
            }     
            catch (Exception ex)     
            {     
                throw new Exception(ex.Message);     
            }     
            return autoId;

}

/// <summary>     
        /// 根据当前alFieldItem数组中存储的字段/值和条件表达式所指定的条件来更新数据库中的记录,返回受影响的行数     
        /// </summary>     
        /// <param name="_tableName">更新的数据表名称</param>     
        /// <returns>返回此次操作所影响的数据行数</returns>     
        public int UpData(string _tableName)     
        {     
            this.tableName = _tableName;     
            this.sqlCmd = "update " + this.tableName + " set ";     
            for (int i = 0; i < this.alFieldItems.Count; i++)     
            {     
                this.sqlCmd += ((DbKeyItem)alFieldItems[i]).fieldName;     
                this.sqlCmd += "=";     
                this.sqlCmd += "@para";     
                this.sqlCmd += i.ToString();     
                this.sqlCmd += ",";     
            }     
            this.sqlCmd = Input.CutComma(this.sqlCmd);     
            if (this.ConditionExpress != string.Empty)     
            {     
                this.sqlCmd = this.sqlCmd + " where " + this.ConditionExpress;     
            }     
            this.cmd.CommandText = this.sqlCmd;     
            this.GenParameters();     
            int effectedLines = this.cmd.ExecuteNonQuery();     
            return effectedLines;

}

/// 返回查询结果DataTable     
        public DataTable GetDataTable()     
        {     
            DataSet ds = this.GetDataSet();     
            return ds.Tables[0];     
        }

/// <summary>     
        /// 根据当前指定的SqlCmd获取DataSet,如果条件表达式不为空则会被清空,     
        /// 所以条件表达式必须包含在SqlCmd中     
        /// </summary>     
        public DataSet GetDataSet()     
        {     
            this.ConditionExpress = string.Empty;     
            this.cmd.CommandText = this.sqlCmd;     
            this.GenParameters();     
            DataSet ds = new DataSet();     
            this.da.SelectCommand = this.cmd;     
            this.da.Fill(ds);     
            return ds;     
        }

/// <summary>     
        /// 产生OleDbCommand对象所需的参数     
        /// </summary>     
        /// <returns></returns>     
        protected void GenParameters()     
        {

if (this.alFieldItems.Count > 0)     
            {     
                for (int i = 0; i < this.alFieldItems.Count; i++)     
                {     
                    cmd.Parameters.AddWithValue("@para" + i.ToString(), ((DbKeyItem)alFieldItems[i]).fieldValue.ToString());     
                }     
            }     
        }    
        #endregion     
    }

public class BinderItem     
    {     
        //每个绑定控件都以object的形式被存储的         
        public object obj;

//绑定到数据库的字段名称         
        public string field;

//是否是字符串类型         
        public bool isStringType;

/// <summary>         
        /// 构造函数         
        /// </summary>         
        /// <param name="_o">需要绑定的控件对象</param>         
        /// <param name="_field">绑定到的数据表字段名称</param>         
        /// <param name="_isStringType">是否是字符串类型</param>         
        public BinderItem(object _obj, string _field, bool _isStringType)     
        {     
            this.obj = _obj;     
            this.field = _field;     
            this.isStringType = _isStringType;     
        }

/// <summary>         
        /// 根据控件类型获得控件的值         
        /// </summary>         
        /// <returns></returns>         
        public string GetValue()     
        {     
            //字符串类型         
            if (obj is String)     
            {     
                return (string)obj;     
            }

//下拉框         
            if (obj is DropDownList)     
            {     
                DropDownList dd = (DropDownList)obj;     
                return dd.SelectedValue;     
            }

//多选框     
            if (obj is CheckBoxList)     
            {     
                string s = string.Empty;     
                CheckBoxList cb = (CheckBoxList)obj;     
                for (int i = 0; i < cb.Items.Count; i++)     
                {     
                    if (cb.Items[i].Selected)     
                    {     
                        s += cb.Items[i].Value + ",";     
                    }     
                }     
                return s;     
            }

//文本框         
            if (obj is TextBox)     
            {     
                TextBox tbx = (TextBox)obj;     
                return tbx.Text.Trim();     
            }

//Label         
            if (obj is Label)     
            {     
                Label lbl = (Label)obj;     
                return lbl.Text;     
            }

//单选组     
            if (obj is RadioButtonList)     
            {     
                RadioButtonList rb = (RadioButtonList)obj;     
                return rb.SelectedValue;     
            }     
            return string.Empty;     
        }

/// <summary>     
        /// 根据控件类型设定控件的值     
        /// </summary>     
        /// <param name="_value">要设定的值</param>     
        public void SetValue(string _value)     
        {     
            //字符串类型     
            if (obj is string)     
            {     
                string s = (string)obj;     
                s = _value;     
                return;     
            }

//文本框     
            if (obj is TextBox)     
            {     
                TextBox tbx = (TextBox)obj;     
                tbx.Text = _value;     
                    return;     
            }

//单选按钮     
            if (obj is RadioButtonList)     
            {     
                RadioButtonList rb = (RadioButtonList)obj;     
                rb.SelectedValue = _value;     
                return;     
            }

//下拉列表     
            if (obj is DropDownList)     
            {     
                DropDownList dd = (DropDownList)obj;     
                dd.SelectedValue = _value;     
                return;     
            }

}     
    }

/// <summary>         
    /// 数据表中的字段属性:字段名,字段值         
    /// </summary>         
    public class DbKeyItem     
    {     
        /// <summary>         
        /// 字段名称         
        /// </summary>         
        public string fieldName;

/// <summary>         
        /// 字段值         
        /// </summary>         
        public string fieldValue;

public DbKeyItem(string _fileName, object _fieldValue)     
        {     
            this.fieldName = _fileName;     
            this.fieldValue = _fieldValue.ToString();     
        }     
    }     
}  
 return;     
            }

//单选按钮     
            if (obj is RadioButtonList)     
            {     
                RadioButtonList rb = (RadioButtonList)obj;     
                rb.SelectedValue = _value;     
                return;     
            }

//下拉列表     
            if (obj is DropDownList)     
            {     
                DropDownList dd = (DropDownList)obj;     
                dd.SelectedValue = _value;     
                return;     
            }

}     
    }

/// <summary>         
    /// 数据表中的字段属性:字段名,字段值         
    /// </summary>         
    public class DbKeyItem     
    {     
        /// <summary>         
        /// 字段名称         
        /// </summary>         
        public string fieldName;

/// <summary>         
        /// 字段值         
        /// </summary>         
        public string fieldValue;

public DbKeyItem(string _fileName, object _fieldValue)     
        {     
            this.fieldName = _fileName;     
            this.fieldValue = _fieldValue.ToString();     
        }     
    }     
}

(0)

相关推荐

  • asp.net的cms 原理篇

    昨晚稍微写了一点,我订制的cms系统的标签,今天我把标签所代替的代码也写出来. 我的方法很简单,就是"替换"二字. 例①HTML--绑定数据 复制代码 代码如下: <!--{an:alist filed=[title,time] category=[#] num=[10] page=[true] sort=[time desc]}--> <li><span class="fr_time">${2}</span><

  • ZKEACMS for .Net Core深度解析

    ZKEACMS 简介 ZKEACMS.Core 是基于 .Net Core MVC 开发的开源CMS.ZKEACMS可以让用户自由规划页面布局,使用可视化编辑设计"所见即所得",直接在页面上进行拖放添加内容. ZKEACMS使用插件式设计,模块分离,通过横向扩展来丰富CMS的功能. 响应式设计 ZKEACMS使用Bootstrap3的栅格系统来实现响应式设计,从而实现在不同的设备上都可以正常访问.同时站在Bootstrap巨人的肩膀上,有丰富的主题资源可以使用. 简单演示 接下来看看程

  • asp.net的cms 绑定数据篇

    半年前,在博客园写了asp.net cms 的几篇文章,那时候,是我的cms还没做出来.都是些夸夸其谈. 现在我已经删除了那几篇. 今天,写这篇,是想感慨一下. 现在我的CMS也核心也快大致完成了. 姑且管这个 c#版的cms叫:anCms anCms的基本语法: 1.绑定数据 复制代码 代码如下: 整个语法说明: 开始标记<!--{an:方法名 filed=[字段1,字段2,字段3] sort=[字段 asc|desc] category=[分类ID] id=[编号ID] keyword=[]

  • CentOS上运行ZKEACMS的详细过程

    ZKEACMS Core 是基于 .net core 开发的,可以在 windows, linux, mac 上跨平台运行,接下来我们来看看如何在 CentOS 上运行 ZKEACMS. 安装 .Net Core 运行时 运行以下命令,安装 .Net Core Runtime sudo yum install libunwind libicu curl -sSL -o dotnet.tar.gz https://go.microsoft.com/fwlink/?linkid=843420 sud

  • asp.net的cms 核心代码篇

    第一篇,我简略描述了一下我的cms标签所表示的含义.anCMS(c#版)第一篇绑定数据 第二篇,我将展示了标签背后真正运行的代码.asp.net的cms 原理篇 好像开源有点多余,核心代码就下面这些. 复制代码 代码如下: using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; namespace an.helper { ///

  • asp.net小孔子cms中的数据添加修改

    题外话:我为什么研究小孔子的cms,从我自己写一个cms我就开始研究起别人的cms,早期我是研究netcms,但这系统过于庞大,看上去十分的累,也没那个精力,于是打算从一套比较小的开始研究,于是小孔子cms就进入了我的研究范围.没过多久我就放下我手中的cms,决定研究清楚有了更多经验再继续写完我没有完成的cms. 最近都在看小孔子cms的代码,其添加与修改数据十分方便,做下笔记,代码主要提取自小孔子cms,去掉了不用的函数并把相关代码写到一个文件中: 结合上面的图片,当我们要往数据库中添加数据时

  • 微信小程序Page中data数据操作和函数调用方法

    Page() 函数用来注册一个页面.接受一个 object 参数,其指定页面的初始数据.生命周期函数.事件处理函数等. //index.js Page({ data: { text: "This is page data.", sliderOffset: 0, sliderLeft: 0, state:{ genre:[], genre_index: 0, model:[], model_index: 0, terminalStatus:'', } }, onLoad: functio

  • 微信小程序云开发实现数据添加、查询和分页

    本文实例为大家分享了微信小程序云开发实现数据添加.查询和分页,供大家参考,具体内容如下 实现的效果 实现要点 WXML 不同类别数据的显示 通过 if-elif-else 实现,在wxml文件中通过 <block></block>渲染,因为它仅仅是一个包装元素,不会在页面中做任何渲染,只接受控制属性.也就是说可以通过属性来控制页面是否要渲染这部分的内容,可以减少页面渲染时间. 云开发数据的获取 先开通云开发功能 ,参考官方文档,然后在创建项目的时候勾选上 使用云开发模板(看个人吧,

  • 详解微信小程序Page中data数据操作和函数调用

    微信小程序Page中data数据获取和设置 一.Page中data数据的获取和设置:        1.设置data数据 this.setData(object) setData() 参数格式:接受一个对象,以 key,value 的形式表示将 this.data 中的 key 对应的值改变成 value.其中 key 可以非常灵活,以数据 路径的形式给出,如 array[2].message,a.b.c.d,并且不需要在 this.data 中预先定义. this.setData({ ; en

  • JavaScript实现将数组数据添加到Select下拉框的方法

    本文实例讲述了JavaScript实现将数组数据添加到Select下拉框的方法.分享给大家供大家参考.具体如下: 这里演示将数组中的数据添加到Select下拉菜单中的效果,当你点击下拉框的时候,就动态加载了数据,更换Select内容的时候,直接替换数组中的内容就可以了.适合前端设计者实现前台的部分本地化脚本操作. 运行效果截图如下: 在线演示地址如下: http://demo.jb51.net/js/2015/js-array-add-select-data-codes/ 具体代码如下: <!D

  • ASP.NET 2.0中的数据操作之九:跨页面的主/从报表

    导言 在前面的两篇教程中,我们看到了如何在单一页面中显示主/从报表, 它使用DropDownList显示主记录,使用GridView或DetailsView显示详细信息. 另外一种常见的主/从报表模式是在一个页面中显示主记录而在另一个页面中显示详细信息.互联网上的论坛,如www.asp.net ,就是该模式在实际应用中非常典型例子. Asp.Net论坛由多个子论坛组成: Getting Started, Web Forms, Data Presentation Controls 等等. 每个子论

  • 在ASP.NET 2.0中操作数据之五十七:在分层架构中缓存数据

    导言: 正如前面章节所言,缓存ObjectDataSource的数据只需要简单的设置一些属性.然而,它是在表现层对数据缓存,这就与ASP.NET page页面缓存策略(caching policies)紧密的耦合(tightly couples)起来.我们对体系机构分层的原因之一便是打破这种耦合.拿业务逻辑层为例,将业务逻辑从ASP.NET页面脱离出来:而数据访问层将数据访问的细节ASP.NET页面脱离出来.从某种意义来说,将业务逻辑和数据访问细节脱离出来是首先,这样的话使系统更易读.易维护.易

  • asp.net中EXCEL数据导入到数据库的方法

    本文实例讲述了asp.net中EXCEL数据导入到数据库的方法.分享给大家供大家参考.具体分析如下: excel是办公中非常常用的一个办公表格了,但我们在开发中通常会需要直接把excel数据快速导入到数据库中了,这里整理了一个asp.net中EXCEL数据导入到数据库的例子供各位参考学习. 注意:EXCEL中的第一行不能导入. 下面是源码:IntoExcel.aspx: 复制代码 代码如下: <%@ Page  AutoEventWireup="true" CodeFile=&q

  • asp实现excel中的数据导入数据库

    asp实现excel中的数据导入数据库 <% Response.CodePage=65001%> <% Response.Charset="UTF-8" %> <% wenjian = request.Form("select") '获取文件扩展名 ext = FileExec(wenjian) '判断文件扩展名 if ext <> "xls" then response.Write("<

  • 微信小程序 详解Page中data数据操作和函数调用

    微信小程序 详解Page中data数据操作和函数调用 Page() 函数用来注册一个页面.接受一个 object 参数,其指定页面的初始数据.生命周期函数.事件处理函数等. //index.js <pre code_snippet_id="2049407" snippet_file_name="blog_20161214_1_1145312" name="code" class="javascript">Page(

随机推荐