12 2008 档案

 
在SQL Server存储过程中使用事务及返回值
摘要:Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1 Create Procedure testTran 2 3 as 4 5 declare @UserID int 6 7 set nocount on 8 9 begin t... 阅读全文
posted @ 2008-12-29 22:51 Lavenders 阅读(2235) 评论(1) 推荐(0)
将DBF,XLS,XML,MDB文件导入C#DataGrid的方法
摘要:Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1//以下的源码里分别给出了将DBF,XLS,XML,MDB文件导入C#DataGrid的方法,供各位参考。 2 3//PutInDataSet.cs的源码 4using System... 阅读全文
posted @ 2008-12-17 22:47 Lavenders 阅读(425) 评论(0) 推荐(0)
ASP.NET条形码
摘要:生成条形码: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1 #region asp.net的条形码 2 public string bar_code(object str, int ch, int cw, int type_code) 3 ... 阅读全文
posted @ 2008-12-13 11:51 Lavenders 阅读(2171) 评论(0) 推荐(0)
在使用了母版页的页面里加载css和js文件
摘要:在子页面的Page_Load中写 方法一: Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> HtmlLink csslink = new HtmlLink(); csslink.Attributes.Add("rel",... 阅读全文
posted @ 2008-12-04 18:21 Lavenders 阅读(480) 评论(0) 推荐(0)
数据库函数依赖
摘要:一、函数依赖(Functional Dependency)的概念 数据依赖的一种,它反映属性或属性组之间相依存,互相制约的关系,即反映现实世界的约束关系。 二、定义 设R(U)是属性U上的一个关系模式,X和Y均为U=... 阅读全文
posted @ 2008-12-01 00:33 Lavenders 阅读(6696) 评论(2) 推荐(1)