Loading

上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 39 下一页
摘要: sql server中ISNULL与其它不为NULL的字段作字符串连接时,返回的是NULL 如 Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->SELECT NULL + 'abc' 返回结果 Code Code highlight... 阅读全文
posted @ 2009-01-16 16:58 .net's 阅读(412) 评论(0) 推荐(0)
摘要: 厨房技术要领宝典 索引: 2.怎样用姜, 3.怎样用盐, 4.怎样用酒, 5.怎样用味精, 6.怎样勾芡, 7.怎样调味, ... 阅读全文
posted @ 2009-01-10 10:50 .net's 阅读(1316) 评论(0) 推荐(0)
摘要: Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->Sub DownLoadFile() Dim SMS_UploadFiles_Path As String = System.Configuration.Configuratio... 阅读全文
posted @ 2008-12-17 22:20 .net's 阅读(702) 评论(0) 推荐(0)
摘要: Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->public void Open() { string FullFileName = ""; //ASP.NET下载文件(弹出打开保... 阅读全文
posted @ 2008-12-17 22:09 .net's 阅读(2490) 评论(4) 推荐(0)
摘要: SQL 注入是一种攻击方式,在这种攻击方式中,恶意代码被插入到字符串中,然后将该字符串传递到 SQL Server 的实例以进行分析和执行。任何构成 SQL 语句的过程都应进行注入漏洞检查,因为 SQL Server 将执行其接收到的所有语法有效的查询。一个有经验的、坚定的攻击者甚至可以操作参数化数据。 SQL 注入的主要形式包括直接将代码插入到与 SQL 命令串联在一起并使其得以执行的用户输入变... 阅读全文
posted @ 2008-12-04 22:08 .net's 阅读(679) 评论(0) 推荐(0)
摘要: 索引器与属性类似。除下表中显示的差别外,为属性访问器定义的所有规则同样适用于索引器访问器。 属性 索引器 允许像调用公共数据成员一样调用方法。 ... 阅读全文
posted @ 2008-12-04 20:58 .net's 阅读(455) 评论(0) 推荐(0)
摘要: 数据库的使用过程中由于程序方面的问题有时候会碰到重复数据,重复数据导致了数据库部分设置不能正确设置…… 方法一 declare @max integer,@id integer declare cur_rows cursor local for select 主字段,count(*) from 表名 group by 主字段 having count(*) > 1 open cur... 阅读全文
posted @ 2008-12-04 10:40 .net's 阅读(400) 评论(0) 推荐(0)
摘要: sql server中 Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->--创建表结构跟old_table的新表 select * into new_table from old_table where 1=0; 若想同时拷贝某些数据,则只要... 阅读全文
posted @ 2008-12-04 10:36 .net's 阅读(542) 评论(0) 推荐(0)
摘要: Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->public class RegexReplace { /// /// 回车 换行 /// /// ... 阅读全文
posted @ 2008-12-01 21:14 .net's 阅读(566) 评论(0) 推荐(0)
摘要: Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->// Initializes a new instance of the StringBuilder class // and appends the given value if suppli... 阅读全文
posted @ 2008-11-30 20:27 .net's 阅读(524) 评论(1) 推荐(0)
上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 39 下一页