2007年10月16日

摘要: 在asp中,用来存取数据库的对象都称为ADO(Active Date Objects), 主要包含三种对象:Connection Recordset Command Connection :负责打开或连接数据库 Recordset :负责存取数据表 Command :负责对数据库执行动查询文章来源:http://blog.csdn.net/happyheipi/ar... 阅读全文
posted @ 2007-10-16 07:45 happyheipi 阅读(110) 评论(0) 推荐(0)
 
摘要: 有两种方法可以实现: 第一种用Get 需要用Request.QueryString读取 /////////////////// 第二种用Post 需要用Request.Form读取 ////////////////// 第一种方式限制了信息的长度 而第二种则不会限制文章来源:http://blog.csdn.net/happyheipi/archive/2007/10/15/1826557.as... 阅读全文
posted @ 2007-10-16 07:07 happyheipi 阅读(175) 评论(0) 推荐(0)

2007年10月15日

摘要: 进入页面 推出页面 这个是页面被载入和调出时的一些特效。duration表示特效的持续时间,以秒为单位。transition表示使用哪种特效,取值为1-23: 0 矩形缩小 1 矩形扩大 2 圆形缩小 3 圆形扩大 4 下到上刷新 5 上到下刷新 6 左到右刷新 7 右到左刷新 8 竖百叶窗 9 横百叶窗 10 错位横百叶窗 11 ... 阅读全文
posted @ 2007-10-15 06:45 happyheipi 阅读(129) 评论(0) 推荐(0)
 
摘要: 日期对象有一些有用的方法来操作和获取日期和时间,下面是一些使用日期对象的方法的例子: The current date and time is: The current month is: The current day of the month is: The current day of the week is: The current year is: The cur... 阅读全文
posted @ 2007-10-15 02:54 happyheipi 阅读(349) 评论(0) 推荐(0)

2007年10月13日

摘要: 用css的背景图像设置设置列表的项目符号,而不是默认的那种,用:background:url(images/image.jpg) 就像这样: HTMLItem oneItem twoItem threeItem fourItem fiveCSS#navlist{margin-left: 0;padding-left: 0;list-style: none;}#navlist li {padding... 阅读全文
posted @ 2007-10-13 02:25 happyheipi 阅读(711) 评论(0) 推荐(0)