posted @ 2008-02-28 14:05 陈达辉 阅读(797) 评论(1) 推荐(0) 编辑
摘要:
完整的URL由这几个部分构成:
scheme://host:port/path?query#fragment
scheme = 通信协议 (常用的http,ftp,maito等)
host = 主机 (域名或IP)
port = 端口号
path = 路径 阅读全文
摘要:
什么是 SHTML使用SSI(Server Side Include)的html文件扩展名,SSI(Server Side Include),通常称为“服务器端嵌入”或者叫“服务器端包含”,是一种类似于ASP的基于服务器的网页制作技术。SSI工作原理:将内容发送到浏览器之前,可以使用“服务器端包含 (SSI)”指令将文本、图形... 阅读全文
posted @ 2008-02-24 14:44 陈达辉 阅读(335) 评论(0) 推荐(0) 编辑
摘要:
productshow.asp代码:AS代码:System.useCodepage=true; var lv_img=new LoadVars(); lv_img.load("productshow.asp"); //载入文本信息文件_global.img_array=new Array(); lv_img.onLoad=function(success){ if(success){ trace(... 阅读全文
posted @ 2007-04-25 15:32 陈达辉 阅读(606) 评论(0) 推荐(0) 编辑
摘要:
主要代码var my_mcl = new MovieClipLoader(); //定义新的MovieClipLoader对象myListener = new Object(); //定义一个新的对象,用来监听load进程myListener.onLoadProgress = function (target_mc, loadedBytes, totalBytes) //加载过程中每当将加载的... 阅读全文
posted @ 2007-04-24 21:18 陈达辉 阅读(1694) 评论(0) 推荐(0) 编辑
摘要:
首先创建一个数据库连接类------------------------db.cs---------------------------------------using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI... 阅读全文
posted @ 2007-04-12 20:48 陈达辉 阅读(2207) 评论(0) 推荐(0) 编辑
摘要:
定义: 何为触发器?在SQL Server里面也就是对某一个表的一定的操作,触发某种条件,从而执行的一段程序。触发器是一个特殊的存储过程。 常见的触发器有三种:分别应用于Insert , Update , Delete 事件。(SQL Server 2000定义了新的触发器,这里不提) 我为什么要使用触发器?比如,这么两个表: Create Table Student(... 阅读全文
posted @ 2007-04-12 00:22 陈达辉 阅读(973) 评论(0) 推荐(0) 编辑