搜索列表
-
站长必看!赚钱网站资源贴
【网站应用】站长必看!赚钱网站资源贴(转贴) https://www.google.com/adsense?hl=en_US支持中国地址,不支持中国网站和流量.100刀支付.http://www.advertising.com/Contact/ContactEmailPub.html 这个广告是ADV的广告,信誉极好,有中国可以申请,最好用美国地址后改地址!http://www.clixgalore.com 这个支持中国 里...
站长必看!赚钱网站资源贴 -
字符批量替换程序asp服务器版
【ASP编程】**********字符批量替换程序asp服务器版****************** 安装方法:直接把replace.asp文件放在任意的支持asp+FSO的环境中 运行方法:用http://localhost/.../replace.asp访问即可看到程序的效果 此程序的功能主要用来替换文件夹中所有文本文件字符用的。 如:txt、htm、asp、jsp、php、…… 一切的文本文件 div+C...
字符批量替换程序asp服务器版 -
web打印的另类方法
【CSS/HTML】web打印的另类方法 选择自 wfmazhenhai 的 Blog 关键字 web打印的另类方法 出处 相信用B/S方式做过应用的人都可能会遇到这样一个问题,如何方便、美观地实现报表打印。如果使用浏览器的打印...
web打印的另类方法 -
ASP生成柱型体,折线图,饼图源代码
【ASP编程】ASP生成柱型体,折线图,饼图源代码 -------------------------------------------------------------------------------- <% function table2(total,table_x,table_y,all_width,all_height,line_no) '参数含义(传递的数组,横坐标,纵坐标,图表的宽度,图表的高度,折线条数) '纯ASP代码生成图表函数2——折...
ASP生成柱型体,折线图,饼图源代码 -
css条件注释理论及实践源文件
【CSS/HTML】浏览器的条件注释理论,用下面一段例子来解释这个问题 (X)HTML 下面一段代码是测试在微软的IE浏览器下的条件注释语句的效果 <!--[if IE]> <h1>您正在使用IE浏览器</h1> <![endif]--> <!--[if IE 5]> <h1>版本 5</h1> <![endif]-...
css条件注释理论及实践源文件 -
制作WEB在线编辑器-插入HTML标签
【CSS/HTML】以前认为WEB的在线编辑器无非就是对输入内容的替换以及快捷的插入HTML代码,但是做的时候却发现虽然原理是那样,但是实现方法并非我想的那么死板。由于很少做UI上的东西所以到现在才知道在document中有execCommand方法可以解决插入HTML标签的问题,这个方法可以在光标所在位置插入需要的HTML标签,并且要注...
制作WEB在线编辑器-插入HTML标签 -
Default style sheet for HTML 4
【CSS/HTML】This appendix is informative, not normative. This style sheet describes the typical formatting of all HTML 4 ([HTML4]) elements based on extensive research in...
DefaultstylesheetforHTML4 -
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教程创建数据库连接
【ASP编程】While this section is devoted to ASP database utilization, it very important to remember that this web site is not intended to be a thorough ASP resource. Remember, the focus of this site is strictly limited to how to use JavaScript as your primary scripting language for ASP. You'...
javascriptasp教程创建数据库连接 -
javascript asp教程服务器对象
【ASP编程】Overview: The Server Object has seven (7) Methods, one (1) Property, zero (0) Events, and zero (0) Collections. List of Methods: Server Methods CreateObject( ) Server.CreateObject("ADODB.Recordset")Create an instance of an Object Execute( ) Server.Execute("fileName.asp")E...
javascriptasp教程服务器对象 -
javascript asp教程第八课--request对象
【ASP编程】Request Object: Request has five (5) Collections, one (1) Property, and one (1) Method. You'll use the Collections far more than the property or the method. Request Collections: Below is a table of the Request Collections and descriptions of how they are used. Request Collections Cli...
javascriptasp教程第八课--request对象 -
javascript asp教程第五课--合二为一
【ASP编程】两条防线,一个函数: 试问你如何能保证客户端和服务器端具有相同的功能?表单域的验证闪现在我们眼前。别人把你的html复制到另外一个脚本,然后改变客户端的表单域验证--这并不是一件难事。摆在眼前的解决方法是将表单域的验证放置在服务器端。但那又意味着因为使用者的一个小错误,都要给服务器端要返回一串的错误信息。那么...
javascriptasp教程第五课--合二为一