文章分类 -  ASP.NET

ASP.NET(C#)
DataTable中 DataRow复制一行到另一个DataTable 此行已属于另一个表
摘要:方法1:DataTable t=new DataTable();DataRow r=t.NewRow();r.ItemArray=oldRow.ItemArray;t.Rows.Add(r);方法2:t.ImportRow(oldRow); 阅读全文

posted @ 2015-08-10 13:03 普向东的博客 阅读(498) 评论(0) 推荐(0)

电子商务购物车解决方案
只有注册用户登录后才能阅读该文。

posted @ 2008-09-03 11:35 普向东的博客 阅读(91) 评论(0) 推荐(0)

c#存储过程实现分页数据读取 适用于SQL 2005,性能良好
摘要:一、存储过程如下: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1 2 3-- ============================================= 4-- Author: 普向东 5-- Create dat... 阅读全文

posted @ 2008-07-28 09:22 普向东的博客 阅读(1062) 评论(1) 推荐(1)

导航