搜索列表
-
Linux下调整网卡的工作模式
【RedHat/Centos】现在的网卡一般都是10/100M自适应工作模式,在配置网卡参数时我们很少考虑它的工作模式,但是在路由器、交换机、代理服务器等通信量比较大的关键设备上,我们应该为它指定正确的工作模式,这样可以提高通信效率。在Linux环境下,我们可以使用系统自带的工具mii-tool(这
模式工作网卡调整参数主机icmp可以设置" -
asp下对POST提交数据限制的解决方法
【ASP编程】由于微软对POST提交数据的大小进行了限制,当表单发送的数据量很大时,就会报错(错误 "ASP 0107 : 80004005")。原因是微软对用Request.Form()可接收的最大数据限制为100K字节。
aspPOST提交数据限制 -
CSS对Web页面载入效率的影响分析总结
【CSS/HTML】我们都熟知JavaScript可能会对Web页面的加载与显示产生较大的影响,因此我们常常关注JavaScript是不是会占用客户端较多的资源,然而大部分都会忽略的一件有趣的事情,CSS也会对Web页面载入的效率产生影响。
CSSWeb页面效率影响 -
定制 404 页面的一些心得
【网站应用】很多兄弟和我一样,有时候会在 404 页面上面花些功夫。好的 404 页面不仅仅可以装饰站点,而且还可以对搜索引擎优化(SEO)有帮助。
404页面心得 -
站长网seo听课心得总结
【网站应用】昨天断了一天的网,今天能上了打开落伍一看,呵呵,鱼给加分了,今天再接再厉希望能早日落伍. 接着打开了站长网,看到"SEO专题讲座:献给SEO初学者的礼物"就加了QQ群,下午冒着被点名的危险旷课去听讲座了.好了, 就不啰嗦了,开始了.由于是新人没能联系上主讲人,讲课内容有版权问题,就不发了(站长...
站长网seo听课心得总结 -
div+css实现的滑动门,简洁,新手上路 (小鸽子系列)
【CSS/HTML】以前回复过几个朋友,关于滑动门的代码,那时我还没有用上IE7,FF,结果,发现只能在IE6下运行,代码也很长;今天又有朋友问我这个,我只好花一点时间,终于把这个东东完成了,希望大家喜欢; 兼容IE7;FF;IE6 代码更简洁,更易读; 滑动门 网上房展会 本月开盘 知名开发商 栏目导航 哈哈哈哈 Q小鸽子 内容1 内容2 内容3 内容4 内容5...
div+css实现的滑动门简洁新手上路(小鸽子系列) -
创建无表格网站的原因和原则 译文
【CSS/HTML】In a time of web developers who just like to say that 'Tables are Evil' and can't (or won't) explain why, this article will attempt to give...
创建无表格网站的原因和原则译文 -
flash和asp分页的一点心得与flash脚本
【ASP编程】看了这个的一些帖子,学到了很多东西,现在和大家一起分享 flash现在只是一个显示的功能,过程中看了一些别人的东西,觉得分页似乎有很简单的实现方式.基本上都是用xml传送的.显示用 list 组件和 datagrid 都可以,这里我用的是动态文本,因为觉得组件用的太麻烦了.所以用了蠢办法,没办法,找不到...
flash和asp分页的一点心得与flash脚本 -
javascript asp教程More About Recordsets
【ASP编程】Below we will attempt to access data from a database without knowing the column names. Clearly the best way to utilize data in your database is to keep track of your schema. Schema is the layout of data in your database. The concept is well beyond the scope of this web site, but it is ...
javascriptasp教程MoreAboutRecordsets -
javascript asp教程Recordset记录
【ASP编程】Recordset is another created/instanciated Object. It is a collection of data taken from a database. Recordset has 26 properties, 25 methods, 11 events, and two (2) collections. The vast majority of Recordset is beyond the scope of this web site. Quick Aside: The database we are using for l...
javascriptasp教程Recordset记录 -
javascript asp教程第十二课---session对象
【ASP编程】Overview: The Session Object is how you track a single user across many pages. It has four (4) properties, two (2) collections, one (1) method, and two (2) events. Get Started: In this series of examples we will create a password system. We will use the Session Object to track whet...
javascriptasp教程第十二课---session对象 -
javascript asp教程第十一课--Application 对象
【ASP编程】Overview: The Application Object represents a collection of ASP pages. The Application object has zero (0) properties, two (2) collections, two (2) methods, and two (2) events. Get Started: Below are a couple scripts for lesson11. <%@LANGUAGE="JavaScript"%> <%...
javascriptasp教程第十一课--Application对象