摘要:
参考博客地址:http://blog.csdn.net/sxhelijian/article/details/8222858 对于“程序设计”的工作,许多初学者的理解就是“写代码”。同样,新手们苦恼的问题是,他们只会“写代码”。当接到一个新的任务,不少人总是在第一时间就爬到键盘上去敲代码。敲着敲着, 阅读全文
2016年12月27日 #
2016年12月15日 #
摘要:
@Html.ActionLink("Home Name", "Index", "Home")Home name 是 跳转链接的名Index 是 action 值Home 是 Control 值 @Html.ActionLink("Application name", "Index", "Home", 阅读全文
2016年12月14日 #
摘要:
选择器例子例子描述CSS .class .intro 选择 class="intro" 的所有元素。 1 #id #firstname 选择 id="firstname" 的所有元素。 1 * * 选择所有元素。 2 element p 选择所有 <p> 元素。 1 element,element 阅读全文
2016年12月8日 #
摘要:
class Program { static void Main(string[] args) { string testStr = "sdfadfdsfadfdsfsdf"; int length = testStr.Length; while (length > 1) ... 阅读全文
2016年11月21日 #
摘要:
今天写了个C#的小测试程序,一开始使用的默认命名WindowsFormsApplication2,写完后觉得名字不好看,于是想改个名字,但是试了一下,想完整的改名还挺复杂,不但要改解决方案名,项目名,还要改命名空间名和文件夹名。顺序如下: 1. VS2010上解决方案名上右键->重命名 2. 项目名 阅读全文
2016年11月16日 #
摘要:
1. 开始是一套面试题,可以选JAVA或C/C++两个语言的英文题。基础语法题,以指针为主。 2. 英文介绍,自由发挥。问了以下几个问题: 离职的愿意,未来五年的计划,介不介意使用ABAP language开发。 3 技术部分,因为面试的岗位是ABAP developer。 Question:堆栈的 阅读全文
2016年11月11日 #
摘要:
w3cschool : http://www.w3school.com.cn/h.asp 菜鸟教程:http://www.runoob.com/ 51CTO: http://www.51cto.com/ angularjs: https://angularjs.org/ Python学习大本营: h 阅读全文
2016年11月3日 #
摘要:
目录 跳过目录 跳过目录 本文目标 本文目标 30分钟内让你明白正则表达式是什么,并对它有一些基本的了解,让你可以在自己的程序或网页里使用它。 如何使用本教程 如何使用本教程 最重要的是——请给我30分钟,如果你没有使用正则表达式的经验,请不要试图在30秒内入门——除非你是超人 :) 别被下面那些复 阅读全文
摘要:
Specifies that the regular expression is compiled to an assembly. This yields faster execution but increases startup time. This value should not be as 阅读全文
2016年10月31日 #
摘要:
1.一个package包含一个control flow并且一个或多个data flow. (这个项目叫做 Integration services project,提供了三种不同类型的control flow 元件) 1.1 containers(provide structures in pack 阅读全文