摘要: FlashSharedObject:需要Flash插件GoogleGears:谷歌插件UserData:IE皆可LocalStorage:需要支持Html5(IE8+) 阅读全文
posted @ 2012-09-13 17:21 *一线天 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 官方的在线生成地址:http://wp.qq.com/index.html示例:大概就是这么些了,官方只提供了前面10个,其它的是一个个试出来的.把代码中的XXXXXXXXX替换成需要的QQ号码即可XXXXXXXXX<a target="_blank" href="http://wpa.qq.com/msgrd?v=3&uin=XXXXXXXXX&site=qq&menu=yes"><img border="0" src="http://wpa.qq.com/pa?p=2:XXXXX 阅读全文
posted @ 2012-09-04 09:22 *一线天 阅读(2231) 评论(0) 推荐(0) 编辑
摘要: 273218159@qq.com 阅读全文
posted @ 2012-07-16 12:49 *一线天 阅读(127) 评论(0) 推荐(0) 编辑
摘要: MSSQL1:查询到指定数据库的连接select spid,login_time,last_batch,status,open_tran,program_name from master.dbo.SYSPROCESSES where dbid in (select dbid from master.dbo.sysdatabases where [name]='dbname')2:强制删除指定的连接kill spid--每次只能删除一条3:sysprocesses表中字段的用途ysprocesses 表中保存关于运行在 Microsoft® SQL Server™ 上的 阅读全文
posted @ 2012-05-31 15:17 *一线天 阅读(143) 评论(0) 推荐(0) 编辑
摘要: http://www.google.com/cse/?hl=zh-CNhttp://cn.bing.com/siteowner(已关闭,可用下面的地址,但据说要编程实现,太麻烦了)http://cn.bing.com/toolbox/http://www.baidu.com/search/freecode.htmlhttp://search.help.cn.yahoo.com/site_search.htmlhttp://union.sogou.com/insite.htmlhttp://toolbox.youdao.com/searchcode/wizardhttp://www.soso.c 阅读全文
posted @ 2012-05-04 22:02 *一线天 阅读(387) 评论(0) 推荐(0) 编辑
摘要: 使用ExtendedProperty扩展信息判断CS_isIdentity:是否为标识符,不支持AccessCS_isComputed:是否为计算列CS_isDeterministic:是否确定...CS_IdentitySeed::标识列种子数CS_IdentityIncrement:标识列递增量CS_Default:列的默认值 CS_isRowGuidCol<%foreach(ColumnSchema cs in SourceTable.Columns){ if( ((bool)cs.ExtendedProperties["CS_IsIdentity"].Valu 阅读全文
posted @ 2012-04-27 14:19 *一线天 阅读(133) 评论(0) 推荐(0) 编辑
摘要: List<Model> list = 获取的集合数据;这里的Model表示实体对象,在项目中List经常用来存储将集合按照指定的键分组,如SQL语句中Group By 字段1,....;这里只能指定一个键,如果要按多个键分组,可以重复以下步骤IEnumerable<IGrouping<string, Model>> groups = list.GroupBy(ins => ins.Field, ins => ins);IGrouping<键的类型,对象类型>:list集合中的对象类型为Model,按Field分组,Field的类型为s 阅读全文
posted @ 2012-04-17 16:50 *一线天 阅读(5264) 评论(0) 推荐(1) 编辑
摘要: 环境SQL版本:MSSQL2005IDE版本:Visual Studio2010OS:win7第一步:找到asp_regsql.exe所在位置,一般位为windows\\microsoft.net\\framwork\\版本第二步:运行CMD,将路径转换到1第三步:为SQL缓存依赖项启用database数据库aspnet_regsql -S localhost -E -d database -ed第四步:为 SQL 缓存依赖项启用该tablename表.注意tablename要和程序中使用的表名完全一致,包括大小定一致aspnet_regsql -S localhost -E -d datab 阅读全文
posted @ 2012-04-17 15:13 *一线天 阅读(662) 评论(2) 推荐(2) 编辑