ASP编写程序常用的代码

sql=”select * from 数据表 where 字段名=字段值 order by 字段名 ”
sql=”select * from 数据表 where 字段名 like ‘%字段值%‘ order by 字段名 ”
sql=”select top 10 * from 数据表 where 字段名 order by 字段名 ”
sql=”select * from 数据表 where 字段名 in (‘值1‘,‘值2‘,‘值3‘)”
sql=”select * from 数据表 where 字段名 between 值1 and 值2″

ASP日期的加减函数

DateAdd 函数的语法有以下参数
(1)interval 必选项。字符串表达式,表示要添加的时间间隔。
(2)number 必选项。数值表达式,表示要添加的时间间隔的个数。数值表达式可以是正数(得到未来的日期)或负数(得到过去的日期)。
(3)date 必选项。Variant 或要添加 interval 的表示日期的文字。

ASP三级联动实例代码附数据库

ASP三级联动实例代码附数据库 包括四个文件:1、数据库连接文件:conn.asp2、JS文件: clienthint.js3、ASP程序文件:select.asp4、数据库文件:mdb\gbcxm.asp下面是select.asp文件内容示例,下载包里面已有,请下载。