摘要:
时间:2008年10月的最后一天 原由:把现有的门户网站的设计改编成不含源码安装方案 第一次使用VseWSS来开发,只能边学边玩 先用empty模板,生成一个project (就叫empty吧) 用module模板,生成一个module(就叫module吧) 把sample.txt更名为test.aspx 把module.xml 改一改 把manifest.xml... 阅读全文
摘要:
时间:2008年10月的最后一天 原由:把现有的门户网站的设计改编成不含源码安装方案 第一次使用VseWSS来开发,只能边学边玩 先用empty模板,生成一个project (就叫empty吧) 用module模板,生成一个module(就叫module吧) 把sample.txt更名为test.aspx 把module.xml 改一改 把manifest.xml... 阅读全文
摘要:
http://www.newdisk.cn/pick.aspx?code=1752731297 阅读全文
摘要:
在SharePoint站点的根目录下的Web.config文件中,找到下面一行: 替换成 便可以为常用的文件建立缓存。那么,如何知道缓存是否建立? 到 http://www.fiddler2.com/Fiddler2/version.asp 下载fiddler 2.0 下图可以看到缓存已经建立 阅读全文
摘要:
去年的这个月,决定在自己的门户网站上用jquery来代替sharepoint webpart. 详情 今年的这个时间,microsoft宣布把jQuery和Visual Studio一起发行,把jQuery作为类库之一。 既有今日,何必当初。 不过,至少也享受了一年的便利。 阅读全文
摘要:
前几天,放上了一个可以隐藏/显示 quick launch 的webpart 如果只要隐藏的话,下面的js可以帮忙 var _NavElements = getElementsByClass("ms-nav"); for (var i=0; i<_NavElements.length; i++) { _NavElements[i].style.display = "none";... 阅读全文
摘要:
在console下 sudo gedit 打开 /etc/X11/xorg.conf 找到: Section "InputDevice" Identifier "Configured Mouse" Driver "vmmouse" [.. ..] EndSection 替代成: Section "InputDevice" Identifier "Configured Mouse"... 阅读全文
摘要:
sudo aptitude update sudo aptitude install build-essential linux-headers-$(uname -r) cp -a /media/cdrom/VMwareTools* /tmp/ cd /tmp/ tar -vxzf VMwareTools*.gz cd vmware-tools-distrib/ sudo ./vmware-ins... 阅读全文
摘要:
webpart 在这里 // 步骤1: Add tags to page to hold hide/show options document.write (' Hide Quicklaunch menu'); document.write ('Show Quicklaunch menu'); // 步骤2: Declare an array containing a list // of... 阅读全文
摘要:
Dim site as new SPsite(ServerUrl) Dim web as site.openweb() Dim list as Splist = web.lists(ListName) Dim item as SPlistItem = list.items.add() Item("hyperlinkField") = stringURL +", "+stringDescripti... 阅读全文
摘要:
刚刚发生 在bdc application definition xml 中 AuthenticationMode property = PassThrough 改成 RevertToSelf 便可以消除 cannot connect xxxInstance 的问题。 不过知其然,但不知其所以然。 阅读全文
|