摘要: http://msdn.microsoft.com/zh-cn/magazine/dn532202.aspx 阅读全文
posted @ 2014-06-16 13:50 Coding让生活更美好 阅读(169) 评论(0) 推荐(0) 编辑
摘要: http://www.datatang.com/news/details_643.htm大数据领域的顶级开源工具大集合 阅读全文
posted @ 2014-06-15 21:07 Coding让生活更美好 阅读(254) 评论(0) 推荐(1) 编辑
摘要: 线程同步的几种方式 http://msdn.microsoft.com/zh-cn/library/ms173179.aspx.NET 并行编程设计模式Web Service的设计WCFhttp://msdn.microsoft.com/zh-cn/library/vstudio/ms735119(... 阅读全文
posted @ 2014-06-07 10:05 Coding让生活更美好 阅读(140) 评论(0) 推荐(0) 编辑
摘要: ALTER TABLE dbo.Parameters ADD CONSTRAINT DF_Parameters_IsTested DEFAULT 0 FOR IsTested 阅读全文
posted @ 2012-12-24 11:05 Coding让生活更美好 阅读(452) 评论(0) 推荐(0) 编辑
摘要: $ (dollar sign)Declare/use a variableExample.$abc = "123"$_ (dollar underscore)'THIS' token. Typically refers to the item inside a foreach loop.Task:Print all items in a collection.Solution.... | foreach { Write-Host $_ }$$ (double dollar, two dollars)Last entered token. Does NOT r 阅读全文
posted @ 2012-10-26 16:07 Coding让生活更美好 阅读(742) 评论(0) 推荐(0) 编辑
摘要: If you want to open a project (.csproj) file that was created in a previous version of Visual Studio, then you need to run Visual Studio (devenv.exe) from the Visual Studio Command Prompt after providing options toclear all SkipLoading tags.So you can go to Start Menu -> All Programs -> Micros 阅读全文
posted @ 2012-09-25 13:48 Coding让生活更美好 阅读(515) 评论(0) 推荐(0) 编辑
摘要: 如果是在powershell script 内部,想要将write-host的内容输入到一个文本文件,可以使用powershell的输出重定向功能,可以使用以下方法重定向输出: - 使用 Out-File cmdlet,该 cmdlet 将命令输出发送至一个文本文件。通常在需要使用 Out-File cmdlet 的参数(例如 Encoding、Force、Width 或 NoClobber 参数)时 使用该 cmdlet。- 使用 Tee-Object cmdlet,该 cmdlet 将命令输出发送至一个文本文件,然后将其发送至 ... 阅读全文
posted @ 2012-09-13 10:58 Coding让生活更美好 阅读(6088) 评论(0) 推荐(1) 编辑
摘要: Powershell 的转义字符是 ·, 是tab键上面的按键,不是单引号。下表罗列了常用的转义字符。Escape CharacterDescription`’Single quote`”Double quote`0Null`aAlert`bBackspace`fForm feed`nNewline`rCarriage return`tHorizontal tab`vVertical tab 阅读全文
posted @ 2012-09-12 13:56 Coding让生活更美好 阅读(2676) 评论(0) 推荐(0) 编辑
摘要: Login系列控件是微软为了简化我们的开发过程,为我们进行常规的安全开发提供块捷途径。 Login系列控件包含下列控件:Login 登录控件LoginName 用于显示用户名的控件LoginStatus 根据用户的登录状态显示不同的信息(登录,注销)LoginView 根据登录状态的不同显示不同的模板CreateUserWizard 提供了一个注册用户账号的向导模板ChangePassword 更改密码PasswordRecovery 当忘记密码的时候用于取回密码以上几种控件的底层都与MembershipApi集成的,这几种控件之间是相互独立的,可以单独使用也可以搭配成一个较完整的安全管理。L 阅读全文
posted @ 2011-11-30 23:11 Coding让生活更美好 阅读(9031) 评论(0) 推荐(0) 编辑
摘要: Run this command: devenv /ResetSettings 阅读全文
posted @ 2010-10-09 14:19 Coding让生活更美好 阅读(170) 评论(0) 推荐(0) 编辑