header文件引用了跟多通用模板,所以整个文章会很长,现在比较忙,注释工作会不定期进行首先开下门户首页的文件portal里面的index.htm
//引用common文件下的header.htm这个也是引用模板文件的一种常用方法 //没什么用 ...
分类:
其他好文 时间:
2014-05-09 11:16:48
阅读次数:
891
偶尔发现了两个不错的免费软件,ClustrMaps 和 Amazing
Counters,具体内容见相关网址.http://clustrmaps.com/zh/index.htmhttp://www.amazingcounter.com这软件功能没GA或其他网站流量实时监测软件的功能多,
把它放在自...
分类:
Web程序 时间:
2014-05-09 11:13:31
阅读次数:
259
下载在浏览器中打开如下网址http://www.igniterealtime.org/downloads/index.jsp,根据你的操作系统选择对应的版本进行下载,这里我是在mac下配置的,所以选择Mac版本的安装包,下载完成后在Finder中找到下载好的openfire_3_8_2.dmg文件。...
分类:
其他好文 时间:
2014-05-09 10:55:46
阅读次数:
329
内容加载到底部的时候自动加载下一批的内容,如http://k.thea.cn/index.php?c=exam&a=visitor&tcid=640&classid=743,滚动条滚动到底部就加载下一部分的内容。要实现这样的效果,可以借助jquery-ias插件。具体用法参见:http://blog...
分类:
Web程序 时间:
2014-05-08 22:00:18
阅读次数:
515
在MySQL中的ORDER
BY有两种排序实现方式:1、利用有序索引获取有序数据2、文件排序在使用explain分析查询的时候,利用有序索引获取有序数据显示Using
index。而文件排序显示Using filesort。1.利用有序索引获取有序数据取出满足过滤条件作为排序条件的字段,以及可以直接...
分类:
数据库 时间:
2014-05-08 19:47:21
阅读次数:
572
1 #include 2 #include 3 #include 4 5 using
namespace std; 6 using namespace pcl; 7 8 int main() 9 {10 pcl::PointCloud::Ptr
cloud (new pcl::P...
分类:
其他好文 时间:
2014-05-07 17:33:59
阅读次数:
377
备份站点Backup-SPSite -Identity -Path [-Force]
[-NoSiteLock] [-UseSqlSnapshot] [-Verbose] 那么就按照上面的代码敲吧(注意要有管理员的身份)命令是:
backup-spsite -identity http://po.....
分类:
其他好文 时间:
2014-05-07 10:24:21
阅读次数:
473
public class ArrayList {
Object[] objects = new Object[10];
int index = 0;
public void add(Object object) {
if (index == objects.length) {
Object[] newObjects = new Object[objects.length*2];
...
分类:
其他好文 时间:
2014-05-07 07:57:10
阅读次数:
257
html代码:@{ ViewBag.Title = "Index"; Layout =
"~/Views/Shared/_Index_Layout.cshtml";} GridView @{ Layout = null;}...
分类:
其他好文 时间:
2014-05-06 12:59:26
阅读次数:
384
private Color(String name,int index){
this.setName(name); this.setIndex(index);} private Color(String name,int index){
this.setName(name); this.setInd...
分类:
其他好文 时间:
2014-05-06 12:08:59
阅读次数:
242