Welcome to the Live Labs Pivot Technical Preview!
To download Pivot, visit our download page. Then, use the following installation code:
2C3F 6B9F D5EC 3A79 (还有9个可使用)
This code is good for 10 installs – give it to 9 friends and keep 1 for yourself!
We hope that you will join our discussion forum to share your feedback and interact directly with the Pivot team.
Thanks,
The Live Labs Pivot Team
FAQ:
Pivot has very limited configuration support, and both the language and date time settings must be standard English-US.
http://getsatisfaction.com/
1. 打开vs 2008的工具>选项>HTML设计器时提示:加载此属性页时出错
2. 打开 .aspx 文件是, 只有HTML编辑视图,没有视图切换选项
在命令行中运行:devenv /ResetSkipPkgs 即可解决该问题.
该错误只在IE中出现,出现该提示的原因主要有两种:
1. 重定义了系统的触发事件名称作为自定义函数名如: onclick / onsubmit ... 都是系统保留的事件名称,不允许作为重定义函数名称。
2. 出现死循环,都提示:Stack overflow at line: 0 , 如:在图片对象定义了 onerror 事件的循环处理、
<img src="http://images.cnblogs.com/a.gif" onerror="this.src='/image/block.gif'" />
这里并不是说 /images/a.gif 不存在, 可能是由于网络原因造成, 这时会执行 onerror 事件, 调用 /images/block.gif 去做当前图片的路径, 但如果当前 /image/block.gif 这个图片文件不存在, 再或者由于网络原因, '/image/block.gif' 下载又出现错误时, 就出现了死循环。
所以在处理 onerror 事件时,要考虑是否是出现这样的问题。
” Stack overflow at line: 0 “ 该错误不是一直出现,是有时会出现, 是网络不正常导致死循环引起的, 查了好半天, 最后才找到这个原因,做下记号吧, 给有需要的人。