摘要: View Code 1 <script type="text/javascript"> 2 function validateCode() { 3 var validatevalue = ""; 4 var codes = new Array(4); 5 var colors = new Array("Red", "Green", "Gray", "Blue", "Maroon", "Aqua", "Fuchsia 阅读全文
posted @ 2013-04-16 22:57 daishuguang 阅读(150) 评论(0) 推荐(0) 编辑
摘要: The compiler produces 3 types of files.1.executable(.exe)files2.dynamic-link libraries(.dll)3.code modules(.netmodule). 阅读全文
posted @ 2013-04-16 18:38 daishuguang 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 1.Using Fully Qualified Names:Namespaces and types have unique names,which are described by fully qualified names that indicate a logical hierarchy.2.Creating and Using C# DLLs:reference the dll methods at compilie time,linked to your program at run time. 阅读全文
posted @ 2013-04-16 18:35 daishuguang 阅读(138) 评论(0) 推荐(0) 编辑
摘要: Files:Deploy.batView Code 1 Powershell.exe -Command Set-ExecutionPolicy "Bypass"2 Powershell.exe -Command "& {%~dp0InstallMain_listcolumn.ps1}"3 PauseInstallMain.ps1View Code 1 #******************************************************************** 2 # Create Site List Instance 阅读全文
posted @ 2013-04-16 14:08 daishuguang 阅读(373) 评论(0) 推荐(0) 编辑
摘要: PowerShell 1.0:http://technet.microsoft.com/en-us/library/hh848793.aspxPowerShell 2.0:http://technet.microsoft.com/en-us/library/bb978526.aspxPowerShell 3.0:http://technet.microsoft.com/en-us/library/bb978526.aspx 阅读全文
posted @ 2013-04-16 13:26 daishuguang 阅读(145) 评论(0) 推荐(0) 编辑
摘要: http://msdn.microsoft.com/en-us/library/aa664769%28v=vs.71%29.aspx 阅读全文
posted @ 2013-04-16 10:09 daishuguang 阅读(157) 评论(0) 推荐(0) 编辑
摘要: DLL(Dynamic linking library):Definition:A dll is linked to your program at run time.what:a library linked to your program.when:at run time.-->dynamic.Apply:---->use the unqualified class namesUsing Fully Qualified Names:Namespaces and types have unique names,which are described by fully qualif 阅读全文
posted @ 2013-04-16 09:33 daishuguang 阅读(156) 评论(0) 推荐(0) 编辑