asp.net

asp.net,c#

2009年9月29日

GridView Tips and Tricks using ASP.NET – Part III

摘要: The GridView control is quiet a handy control and is the most commonly used control when building an ASP.NET site. The more you work with it, the more you realize how powerful it can be while presenti... 阅读全文

posted @ 2009-09-29 16:20 灵魂边缘 阅读(247) 评论(0) 推荐(0) 编辑
GridView Tips and Tricks using ASP.NET - Part II

摘要: The GridView control is quiet a handy control and is the most commonly used control when building an ASP.NET site. The more you work with it, the more you realize how powerful it can be while presenti... 阅读全文

posted @ 2009-09-29 16:19 灵魂边缘 阅读(495) 评论(0) 推荐(0) 编辑
GridView Tips and Tricks using ASP.NET 2.0 I

摘要: The GridView control is quiet a handy control and is the most commonly used control when building an ASP.NET site. The more you work with it, the more you realize how powerful it can be while presenti... 阅读全文

posted @ 2009-09-29 16:18 灵魂边缘 阅读(233) 评论(0) 推荐(0) 编辑
网站加速技巧大全

摘要: 困扰许多网站所有者很久的一个问题是网站访问速度总是那么慢。想购买独立带宽,预算不允许,想购买CDN加速,价格又太贵。那有没有经济实惠的解决办法呢?从目前的大环境来分析,我们也只有通过技术手段来解决这个问题了。对Web开发有着深刻理解的著名搜索引擎厂商Google前段时间发布了一款Firefox /Firebug插件Page Speed(为什么是Firefox 而不是Chrome?),并已开源,网络... 阅读全文

posted @ 2009-09-29 16:13 灵魂边缘 阅读(383) 评论(0) 推荐(0) 编辑
一些网站加速工具

摘要: Page Speed(网页加速工具):这是一个开源的Firefox/Firebug插件。网站管理人员和Web开发人员可以使用网页加速工具估算自己网页的性能,并得到如何优化这些网页的建议。AOL Page Test(AOL网页测试):这是一个用来测量和分析使用IE时网页性能的开源工具。Cuzillion:该工具能够快速构建网页,并发现组件如何交互。每天,浏览器都会有各种无法预料的行为,有时因为浏览器... 阅读全文

posted @ 2009-09-29 16:10 灵魂边缘 阅读(631) 评论(0) 推荐(0) 编辑
how to use mstsclib

摘要: use AxImp /source c:\windows\system32\MSTSC.dll to generate the source code of AxMSTSCLib.dll(AxMSTSCLib.cs), then you can include it in your project, thus you do not need AxMSTSCLib.dll.what's more, ... 阅读全文

posted @ 2009-09-29 16:03 灵魂边缘 阅读(761) 评论(0) 推荐(0) 编辑
JavaScript去除空格的几种方法 (trim)

摘要: 其实这些方法也都大同小异方法一:String.prototype.trim= function() { // 用正则表达式将前后空格 // 用空字符串替代。 return this.replace(/(^\s*)|(\s*$)/g, ""); }方法二:functiontrim(str){ for(vari=0;i<str.length&&str.charAt(i)==... 阅读全文

posted @ 2009-09-29 15:57 灵魂边缘 阅读(400) 评论(0) 推荐(0) 编辑
Selective Form Validation Using ASP.NET Validation Controls

摘要: ASP.Net comes in with a set of validation controls that automatically validate the data entered by a user. Though this validation controls are very powerful and easy to use, they have a small draw bac... 阅读全文

posted @ 2009-09-29 09:48 灵魂边缘 阅读(270) 评论(0) 推荐(0) 编辑