Notice: Undefined variable: bid in /home/wwwroot/chichuang/ku3.com.cn/public/class.php on line 3
搜索列表
-
Dreamweaver怎样制作禁止页面缓存
【Dreamweaver教程】今天在开发时碰到一种方法,就是客户要求页面不缓存,查了一下得出如下几种不让页面缓存的办法,有需要的朋友可以参考一下
Dreamweaver禁止页面缓存 -
asp中的rs.open与conn.execute的区别说明
【ASP编程】不管是rs.open sql,conn还是conn.execute(sql) [这里的SQL是delete,update,insert]执行以后都会返回一个关闭的记录集
rs.openconn.execute -
asp快速开发方法之数据操作实例代码第1/3页
【ASP编程】这是我自己的心得,给大家作个参考。 我的目的是让开发变得简单,尽可能少地考虑实现语句,更多地把精力用于思考业务逻辑。希望我的文章对大家有所启发和帮助。 如果你对ASP不熟悉,可以先看以下教程: 1、http://布鲁斯狼的ASP编程入门进阶 2、www.w3schools.com的ASP教程(英文\中文),查看更多 好吧,让我们进入...
asp快速开发方法之数据操作实例代码 -
javascript asp教程第三课 new String() 构造器
【ASP编程】开始:new String() 是本课程计划中较早出现的另一个让人感觉到奇怪的地方。但和转义字符一样, new String()是创建一个成功的asp javascript应用的必须元素。下面是本课的两个脚本:下面是实际上承担重量的脚本:行为中的new String( ):现在我们来看看下面的asp行。Request.Form 我们将在后面有独立的课程来讲授。下...
javascriptasp教程第三课newString()构造器 -
javascript asp教程第二课--转义字符
【ASP编程】并非是题外话:我们在第二课中要讲到的“转义字符”看起来与我们的课程并没有关系。事实并非如此。转义字符是在asp中使用javascript的一个完整部分。而第二课要讲的恰恰就是转义字符。没有转义字符,那么你为了写出有效率的asp脚本将会遇到许多的困难。抱歉,下面进入正题:以下是第二课的asp脚本。还记不记得在第一课的列子中,...
javascriptasp教程第二课--转义字符 -
javascript asp教程 日期相关
【ASP编程】JavaScript is loosely typed. Database files are not. If you put text into a Boolean database column or a Boolean value into a date/time column, then you will get an error. For the most part this is not a problem, except for date/time. It does not correspond to the JavaScript Date Object...
javascriptasp教程日期相关 -
javascript asp教程添加和修改
【ASP编程】The Connection Execute(): If you want to retrieve data from a database then you have no choice but to use a Recordset. However, for the purposes of adding, updating, and deleting data you don't necessarily have to have a Recordset. It's up to you. For the purposes of adding, updating and delet...
javascriptasp教程添加和修改 -
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教程创建数据库连接
【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编程】The ASPError Object has zero (0) Methods, nine (9) Properties, zero (0) Events, and zero (0) Collections. AspCode AspDescription Category Column Description File Line Number SourceThe way you access the ASPError Properties is with a Server Method. Yeah, I know; it does...
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教程服务器对象