NStarfaiNet 框架的使用示例(三)

前面大家应该对应用框架的代码已经有所了解了。现在我们再看看UI层的配置和使用。

首先看配置文件,详见 http://www.cnblogs.com/starstarfire/archive/2006/10/06/522329.html

aspx页面代码:

插入和更新数据代码如下:

 1 ExpandedBlockStart.gif ContractedBlock.gif /**/ /// <summary>
 2InBlock.gif        /// 功能:保存
 3InBlock.gif        /// </summary>
 4InBlock.gif        /// <param name="sender"></param>
 5ExpandedBlockEnd.gif        /// <param name="e"></param>

 6 None.gif          private   void  btnSave_ServerClick( object  sender, System.EventArgs e)
 7 ExpandedBlockStart.gifContractedBlock.gif         dot.gif {                
 8InBlock.gif            if (m_ID == 0)
 9ExpandedSubBlockStart.gifContractedSubBlock.gif            dot.gif{
10InBlock.gif                // 插入一条数据
11InBlock.gif                entity = new BsiTestEntity();
12InBlock.gif                entity.TestName = this.txtName.Value;                
13InBlock.gif                BsiTestBLL.GetInstance().Insert(entity);
14ExpandedSubBlockEnd.gif            }

15InBlock.gif            else
16ExpandedSubBlockStart.gifContractedSubBlock.gif            dot.gif{
17InBlock.gif                // 更新一条数据
18InBlock.gif                entity = BsiTestBLL.GetInstance().Get(new BsiTestEntity().Key(m_ID));
19InBlock.gif                entity.TestName = this.txtName.Value;
20InBlock.gif                BsiTestBLL.GetInstance().Update(entity);
21ExpandedSubBlockEnd.gif            }

22ExpandedBlockEnd.gif        }
查询代码如下:
 1 ExpandedBlockStart.gif ContractedBlock.gif /**/ /// <summary>
 2InBlock.gif        /// 根据条件获得数据
 3InBlock.gif        /// </summary>
 4ExpandedBlockEnd.gif        /// <returns></returns>

 5 None.gif          private  DataTable GetDataTable()
 6 ExpandedBlockStart.gifContractedBlock.gif         dot.gif {
 7InBlock.gif            HybridDictionary ht = new HybridDictionary();
 8InBlock.gif            if (this.txtName.Value.Length > 0)
 9ExpandedSubBlockStart.gifContractedSubBlock.gif            dot.gif{
10InBlock.gif                ht.Add("test_name"this.txtName.Value);
11ExpandedSubBlockEnd.gif            }

12InBlock.gif            
13InBlock.gif            return BsiTestBLL.GetInstance().DAO.ExcuteDataTable("selecttest", ht);;
14ExpandedBlockEnd.gif        }
删除代码如下(此处代码示范在DataGrid中删除一条记录):
 1 ExpandedBlockStart.gif ContractedBlock.gif /**/ /// <summary>
 2InBlock.gif        /// 执行删除
 3InBlock.gif        /// </summary>
 4InBlock.gif        /// <param name="source"></param>
 5ExpandedBlockEnd.gif        /// <param name="e"></param>

 6 None.gif          private   void  dtgDataList_ItemCommand( object  source, System.Web.UI.WebControls.DataGridCommandEventArgs e)
 7 ExpandedBlockStart.gifContractedBlock.gif         dot.gif {
 8InBlock.gif            if (e.Item.ItemType == ListItemType.AlternatingItem || e.Item.ItemType == ListItemType.Item)
 9ExpandedSubBlockStart.gifContractedSubBlock.gif            dot.gif{
10InBlock.gif                LinkButton linkButton = (System.Web.UI.WebControls.LinkButton)e.CommandSource;
11InBlock.gif
12InBlock.gif                // 删除                
13InBlock.gif                decimal m_ID = Convert.ToInt32(dtgDataList.DataKeys[e.Item.ItemIndex]);;
14InBlock.gif                BsiTestBLL.GetInstance().Delete(new BsiTestEntity().Key(m_ID));
15InBlock.gif
16InBlock.gif                //刷新
17InBlock.gif                btnQuery_ServerClick(null,null);
18ExpandedSubBlockEnd.gif            }

19ExpandedBlockEnd.gif        }

转载于:https://www.cnblogs.com/starstarfire/archive/2006/10/22/536490.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值