ComBoost项目地址http://comboost.wodsoft.comhttps://github.com/Kation/ComBoost/tree/develop准备工作首先,在Visual
Studio中创建Mvc4项目。然后使用NuGet安装ComBoost程序包。编写实体在Model...
分类:
Web程序 时间:
2014-05-10 05:53:57
阅读次数:
476
Insert title here
div{
width: 300px;
height: 300px;
border:1px red solid;
position: fixed;/*相对于浏览器窗口进行定位*/
right: 5px;
}
img{
float:left;
width:180px;
height:180px;
}
/*两个定时器函数的区别:
* setTime...
分类:
编程语言 时间:
2014-05-10 04:49:23
阅读次数:
375
个人整理比较常用的几个快捷键:
1. Ctrl+Q:回到最后一次编辑的地方
2. Ctrl+.及Ctrl+1:下一个错误及快速修改
3. Ctrl+O:列出当前类中的所有方法及属性
4. Ctrl+E:快速转换编辑器
5. Alt+Left:向后到浏览过的地方
6. Alt+Right:向前到浏览过的地方
7. Ctrl+Shift+R:全局搜索方法或者类
8. Ctrl+Shif...
分类:
系统相关 时间:
2014-05-10 04:34:10
阅读次数:
338
Problem DescriptionA tree is a well-known data
structure that is either empty (null, void, nothing) or is a set of one or more
nodes connected by dire...
分类:
其他好文 时间:
2014-05-10 03:18:52
阅读次数:
374
import osdef tree(top): for path, names, fnames in
os.walk(top): for fname in fnames: yield os.path.join(path, fname) for name
in...
分类:
编程语言 时间:
2014-05-09 23:49:35
阅读次数:
367
前序和中序构建二叉树后序和中序构建二叉树分析:主要思路就是
在中序中找根节点然后划分左右子树,具体如下:1. 查找根节点。 我们知道前序序列的第一个元素 和 后序序列的最后一个元素 肯定是根节点,我们就以此为突破口2.
确定根节点的坐标。 我们在 中序序列中找到 根节点 的下标。3. 分割左右子树。...
分类:
其他好文 时间:
2014-05-09 23:17:30
阅读次数:
458
设计器:代码:在Form_Load事件中添加
:statusStripMain.LayoutStyle=
ToolStripLayoutStyle.HorizontalStackWithOverflow;lbl单位.Alignment =
ToolStripItemAlignment.Right;l...
Function cuttextlen(intext, lens)
If Len(intext)
cuttextlen = intext
Else
tmptext = intext
GetTexts = ""
Do While Not Len(tmptext)
GetTexts = GetTexts + Left(tmptext, lens)
tmptext = Right...
分类:
其他好文 时间:
2014-05-09 22:22:08
阅读次数:
320
DOS下的tree命令可以把当前路径当做根路径,然后把文件树以树的形式展示出来。这个命令的实现不难,深搜一下文件树就可以了。
import java.io.File;
import java.util.Scanner;
public class Tree {
public static int depth = 0;
public static void main(String[] arg...
分类:
编程语言 时间:
2014-05-09 20:58:45
阅读次数:
361
做出的效果样式如下图,1,首先考虑的是如何显示border,就像是分割代码,我把border分割为最外层DIV全border,和内层DIV的right和bottom的border,就是右边和下边。2,考虑DIV的布局,内层DIVfloat:left,设定每个DIV的宽度和高度,就可以达到想要的效果,...
分类:
Web程序 时间:
2014-05-09 19:36:13
阅读次数:
519