摘要: C#: a simple,modern,object-oriented,type-safe programming language.VS is development tool. it includes an interactive development environment,visual designers for building windows and web applications,a compiler,and a debugger..NET Framwork:includes a common execution engine and a rich class library 阅读全文
posted @ 2013-04-17 11:17 daishuguang 阅读(187) 评论(0) 推荐(0) 编辑
摘要: Language:Edit-->Compile-->RunningDesign-->Develop-->Deploy宏观 :Start--------------------->Stop微观:Begin-------------------->End|DoneLanguage is just one hand.The big scope is platform.Language:C#Platform:.Net Framework,Office,Sharepoint,Database and so on.从文件的角度看:第一步(build or compile 阅读全文
posted @ 2013-04-17 00:21 daishuguang 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 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) 编辑
摘要: http://msdn.microsoft.com/en-us/library/ee476619.aspx 阅读全文
posted @ 2013-04-15 15:06 daishuguang 阅读(102) 评论(0) 推荐(0) 编辑
摘要: Application pages do not support customization, which gives them two distinct advantages over site pages. First, each application page is always compiled into a single DLL so that it performs and scales better than a site page. Second, application pages are allowed to have in-line code. Now that you 阅读全文
posted @ 2013-04-15 14:36 daishuguang 阅读(110) 评论(0) 推荐(0) 编辑
摘要: http://msdn.microsoft.com/en-us/library/bb892189%28v=office.12%29.aspxOnce a Web application is created, it is no longer necessary to touch the file system or IIS metabase of the front-end Web server when creating, updating, and deleting sites or site collections.web application-->并不存放在File Syste 阅读全文
posted @ 2013-04-15 14:06 daishuguang 阅读(243) 评论(0) 推荐(0) 编辑
摘要: http://msdn.microsoft.com/en-us/library/aa301738%28v=vs.71%29.aspx 阅读全文
posted @ 2013-04-15 01:00 daishuguang 阅读(122) 评论(0) 推荐(0) 编辑
摘要: http://blog.renren.com/share/263553722/1863762275所谓的预处理指令,就是用来控制编译器工作的一些指令。比如说使用预处理指令来禁止编译器编译代码的某一部分。所有的C#又处理指令都是以符号#开头的。 阅读全文
posted @ 2013-04-15 00:58 daishuguang 阅读(174) 评论(0) 推荐(0) 编辑
摘要: Relative path:相对于Application root的路径以"/"开头 阅读全文
posted @ 2013-04-12 13:54 daishuguang 阅读(117) 评论(0) 推荐(0) 编辑