So dear ones, celebrate in the true spirit of the holy occasion, for the only way to gain true happiness is to make others happy.
亲爱的朋友们,以至诚之心为盛典庆贺吧,因为乐人之乐才是获得真正幸福的唯一途径。
So dear ones, celebrate in the true spirit of the holy occasion, for the only way to gain true happiness is to make others happy.
亲爱的朋友们,以至诚之心为盛典庆贺吧,因为乐人之乐才是获得真正幸福的唯一途径。
更新2:按照下面的设定确实可以实现同时开启猫的路由功能及机顶盒的拨号功能,但是经过实际使用效果却不理想。当任意主机经由路由接入并进行高并发连接数的应用,如 p2p 下载时,ITV 效果受到极大影响,基本无法流畅播放。理论上视讯 2M 与 互联网 4M 的带宽是分开独享的,不知为何会产生这样的情况,寻找解决方案中。
更新:ITV 机顶盒进入设置页的密码为 8288 ,保存设置的密码为 3008 。
刚换成深圳电信的 E8 套餐,4M 宽带 + 2M 视讯。猫是中兴的 ZXV10 H608B 带天线版,硬件版本 V1.1.00 ,软件版本 V1.1.02T10_E ,telecomadmin 用户有效。
管理界面比较复杂,选项很多,不过我们需要关注的只有几项而已。
开启路由功能
登入后选择 网络 ,在 宽带设置 下删除两个无用连接。因为最多只能建立 8 个连接,不删没法建新的。然后 新建wan连接 ,模式 路由 ,路由模式 PPPOE ,业务模式 INTERNET ,VPI 8 ,VCI 35 ,用户名 和 密码 自己填,其它选项默认。点击 新建 。完成,今后机器脸上猫就可上网,不必手动拨号。
这样设定之后 ITV 会无法拨号,看不了电视,于是我们需要
设置 ITV
还是 新建wan连接 ,绑定选项 LAN2 ,模式 桥接 ,业务模式 Other ,VPI 8 ,VCI 35 ,余皆默认。完成,现在机顶盒拨号看 ITV 与猫的路由互不影响。
用 p2p 下载的话,别忘了进入 应用 UPNP设置 ,勾选 启用UPnP 。
为了对软件质量做更好的控制,微软限制了 Windows Live 系列软件的安装环境。被允许安装的操作系统仅有 32位的 XP SP2 和 SP3,还有 Vista。
其实在其它 Windows 操作系统安装也是可行的,只要我们有 MSI 格式的安装文件就可以。下载链接请到拙文 http://dengkefu.com/boke/internet/application/windows-live-essentials-installer-in-msi-format.html 查看。
需要注意的是用 MSI 安装可能在“添加/删除程序”里面找不到卸载软件的项目,这时我们可以通过在安装所用的 MSI 文件上点击右键,选择“卸载”来实现。
For a detailed English version of this article, please visit:
http://dengkefu.com/boke/internet/application/windows-live-essentials-installer-in-msi-format.html
Update: It seems that the Live Messenger MSI can be installed but not run correctly. So I replaced it with another version, and it works great this time.
As we know, Windows Live products can only be installed on specific OS like Windows XP SP2 or later, or Windows Vista. Unfortunately, I’m currently running Windows 2003 Server on my laptop for development reasons, which does not meet the system requirements for Windows Live components.
There’re workarounds for this, and I’m introducing to you the most simple one: use the MSI installers and the system requirements check will be bypassed.
Download (links updated at 2009-07-29)
Notes
Always Twitting is a newly released twitter-style WordPress theme. It is especially useful to those who are writing posts like twitting, like me. ^^ Besides, it’s simple and fresh. Take a look at the snapshot below and see if you like the appearance.
Features include:
Plugins supported:
Download:
Current version 2.7.3 of Always Twitting can be downloaded here.
随着肚破惊天同志放出新主题作品 Always Twitting,俺也紧跟趋势用上了。肚同志作品的特点是精致,细节设计十分用心,色彩配搭也赏心悦目。之前本站所用的主题 Apple4us 也是此兄的手笔,在此一并表示感谢。
对该主题有兴趣的同学们可以访问 http://dupola.com/wordpress/twitter 获取更多信息。
For a detailed English version of this article, please visit:
http://dengkefu.com/boke/internet/application/always-twitting-free-wordpress-theme.html
由于客户端 Validation 触发在 Button 的事件之前,所以如果在事件里定义转向的话,会被 Validator 们阻止。
其实解决办法也很简单,将 Button 的 CausesValidation 属性设置为 false 即可。
我的想法是,由服务器端生成的操作,都有相应的属性可以对其进行控制。呃,仅仅是想法。
For a detailed English version of this article, please visit:
http://dengkefu.com/boke/programming/c-sharp-and-dot-net/redirection-in-a-page-with-validation-objects.html
I’ve been up to a new C# with ASP.NET project lately, and I plan to record down the problems occurred along the development, of course, with solutions.
Here is the first one, about Redirection and Validation. It’s pretty simple, or, I should say amateur. You got it, amateur is who I am. ^^
I encountered this problem that, Okay, here comes the
Problem Description
I’ve got a Button object with OnClick Event in page1, which, when clicked, Response.Redirect to page2. Meanwhile, I have some Validator objects in page1, too. The thing is, the client-side Validation occurs before even reaching the Event for the Button. That is to say, the Validators prevent Redirection from happening.
Solution
You’ll love this because it’s so easy. In the Button’s properties list, find "CausesValidation" and set it to false. That’s it.
My thought is, there’s always some property control if an operation is generated on the server-side.