11 2008 档案

摘要:Code Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->using System; using System.Text; using System.Collections.Generic; public class Class1 { ... 阅读全文
posted @ 2008-11-25 18:05 Thinking.N 阅读(292) 评论(0) 推荐(0) 编辑
摘要:Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->using System; using System.Collections.Generic; using System.Text; using System.Data; using Syste... 阅读全文
posted @ 2008-11-24 15:24 Thinking.N 阅读(301) 评论(0) 推荐(0) 编辑
摘要:Code Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->using System; using System.Collections.Generic; using System.Linq; using System.Text; using ... 阅读全文
posted @ 2008-11-23 21:02 Thinking.N 阅读(650) 评论(0) 推荐(0) 编辑
摘要:Code Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->using System; using System.Collections.Generic; using System.Linq; using System.Text; using ... 阅读全文
posted @ 2008-11-23 20:31 Thinking.N 阅读(277) 评论(0) 推荐(0) 编辑
摘要:Code //代码说明 //本例没有创建数据集--DataSet ds=new DataSet(); //而是创建了以个表--DataTable dt=new DataTable(); //没有填充数据集---da.Fill(ds,"products"); //而是填充表--da.Fill(dt); //因为数据表之能保存一张表,所以注意Fill()方法没有接受数据表名作为参数.由于不需要在... 阅读全文
posted @ 2008-11-23 16:34 Thinking.N 阅读(918) 评论(3) 推荐(0) 编辑
摘要:.NET环境中,XML是数据交换的基本格式,In fact ,The xml is the base of the ADO.NET,The DataSet store the data with the Xml inside it,and has many methods to write and read the xml For example: 1.System.Data.DataSet... 阅读全文
posted @ 2008-11-23 16:02 Thinking.N 阅读(721) 评论(2) 推荐(0) 编辑
摘要:Code 给UpDateCommand,InsertCommand,DeleteCommand属性编写代码虽然简单,但是也有很多的问题! 因袭每个数据一共程序都有自己的命令构造器(Command Bulider) ..如果DataTable对应数据库智能个的一个表,那么就可以用CommandBulider为DataAdapter自动生成对应的UpDateCommand,InsertComman... 阅读全文
posted @ 2008-11-23 15:30 Thinking.N 阅读(1494) 评论(1) 推荐(0) 编辑
摘要:Code Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->using System; using System.Collections.Generic; using System.Linq; using System.Text; using ... 阅读全文
posted @ 2008-11-22 14:15 Thinking.N 阅读(402) 评论(0) 推荐(0) 编辑
摘要:Code Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->using System; using System.Collections.Generic; using System.Linq; using System.Text; u... 阅读全文
posted @ 2008-11-22 13:49 Thinking.N 阅读(905) 评论(0) 推荐(0) 编辑
摘要:Code Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->using System; using System.Collections.Generic; using System.Linq; using System.Text; usi... 阅读全文
posted @ 2008-11-22 11:07 Thinking.N 阅读(266) 评论(0) 推荐(0) 编辑
摘要:Code //注意如何给DataTable添加新行 DataRow newRow=dt.NewRow();//调用方法 ....... dt.Rows.Add(newRow); Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->usin... 阅读全文
posted @ 2008-11-22 10:29 Thinking.N 阅读(291) 评论(0) 推荐(0) 编辑
摘要:Code //构造一个DataView对象,传递死个函数 DataView dv=new DataView(dt,"country='Germany'","country",DataViewRowState.CurrentRows); 第一个参数:DataTable,第二个:对DataTable内容进行筛选的筛选器, 第三个是排序列,最后一个参数是指定要在视图中包含的行的类型. System... 阅读全文
posted @ 2008-11-21 21:14 Thinking.N 阅读(1282) 评论(1) 推荐(0) 编辑
摘要:在调用Fill()方法时,如果连接没有打开,fill()就自动打开,在数据填充完毕后关闭它. 如果在调用Fill()方法时打开了连接,fill()就使用该连接,But won't close it after it uesd it ! 虽然数据集完全独立于与数据库和连接,但是使用数据集并不意味着和数据库断开连接. 如果要在断开的情况下运行就可以用数据集,但是在填充他之前不要打开l连接(或者如果... 阅读全文
posted @ 2008-11-21 20:40 Thinking.N 阅读(502) 评论(0) 推荐(0) 编辑
摘要:Code //先创建数据适配器, SqlDataAdapter da=new SqlDataAdapter(); da.SelectCommand=new SqlCommand(sql,conn); //创建和填充数据集 DataSet ds=new DataSet(); da.Fill(ds,"Customers"); //每个查询返回一个数据集,每个结果都保存在单独的DataTable... 阅读全文
posted @ 2008-11-21 20:27 Thinking.N 阅读(1619) 评论(0) 推荐(0) 编辑
摘要:Code Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->using System; using System.Collections.Generic; using System.Linq; using System.Text; using ... 阅读全文
posted @ 2008-11-21 18:54 Thinking.N 阅读(222) 评论(0) 推荐(0) 编辑
摘要:Code Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->using System; using System.Collections.Generic; using System.Linq; using System.Text; using ... 阅读全文
posted @ 2008-11-21 15:38 Thinking.N 阅读(371) 评论(0) 推荐(0) 编辑
摘要:Code Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->using System; using System.Collections.Generic; using System.Linq; using System.Text; using ... 阅读全文
posted @ 2008-11-21 15:23 Thinking.N 阅读(623) 评论(0) 推荐(0) 编辑
摘要:Code Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->using System; using System.Collections.Generic; using System.Linq; using System.Text; using ... 阅读全文
posted @ 2008-11-21 15:22 Thinking.N 阅读(231) 评论(0) 推荐(0) 编辑
摘要:Code Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->using System; using System.Collections.Generic; using System.Linq; using System.Text; using ... 阅读全文
posted @ 2008-11-21 15:03 Thinking.N 阅读(913) 评论(0) 推荐(0) 编辑
摘要:Code Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->using System; using System.Collections.Generic; using System.Text; using System.Data; using ... 阅读全文
posted @ 2008-11-21 12:13 Thinking.N 阅读(178) 评论(0) 推荐(0) 编辑
摘要:SqlDataReader有Reader和GetValue()方法,前者是提取一行,后者是取行中某一列的值! eg: SqlDataReader rdr=cmd.ExecuteReader(); // Table Northwind.Employees: While(rdr.Read()) { Console.WriteLine("Employee name:{0}{1}",rdr.GetV... 阅读全文
posted @ 2008-11-21 11:46 Thinking.N 阅读(603) 评论(0) 推荐(0) 编辑
摘要:Code Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->using System; using System.Collections.Generic; using System.Text; using System.Data; using ... 阅读全文
posted @ 2008-11-21 11:26 Thinking.N 阅读(153) 评论(0) 推荐(0) 编辑
摘要:Code Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->using System; using System.Collections.Generic; using System.Text; using System.Data; using ... 阅读全文
posted @ 2008-11-21 11:23 Thinking.N 阅读(145) 评论(0) 推荐(0) 编辑
摘要:Code Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->using System; using System.Collections.Generic; using System.Text; using System.Data; using ... 阅读全文
posted @ 2008-11-21 10:57 Thinking.N 阅读(216) 评论(0) 推荐(0) 编辑
摘要:Code Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->using System; using System.Collections.Generic; using System.Text; using System.Data; using ... 阅读全文
posted @ 2008-11-21 10:54 Thinking.N 阅读(263) 评论(0) 推荐(0) 编辑
摘要:eval()方法在运行时使用反射执行后期绑定计算,因此与标准的ASP.NET数据绑定方法bind相比,会导致性能明显下降。它一般用在绑定时需要格式化字符串的情况下。多数情况尽量少用此方法 Eval 方法是静态(只读)方法,该方法采用数据字段的值作为参数并将其作为字符串返回。Bind 方法支持读/写功能,可以检索数据绑定控件的值并将任何更改提交回数据库。 使用 Eval 方法... 阅读全文
posted @ 2008-11-17 19:28 Thinking.N 阅读(261) 评论(0) 推荐(0) 编辑
摘要:js中innerHTML与innerText的用法与区别 用法: test1 test2 在JS中可以使用: test.innerHTML: 也就是从对象的起始位置到终止位置的全部内容,包括Html标签。 上例中的test.innerHTML的值也就是“test1 test2 ”。 test.innerText: 从起始位置到终止位置的内容, 但它去除Html标签 ... 阅读全文
posted @ 2008-11-01 12:23 Thinking.N 阅读(687) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示