1.如何 最小化、最大化、关闭窗口
答:
2.如何静止页面缓存
答:htm网页
或者
asp网页
response.expires=-1
response.expiresabsolute=now()-1
response.cachecontrol="no-cache"
php网页
header("expires:mon,26jul199705:00:00gmt");
header("cache-control:no-cache,must-revalidate");
header("pragma:no-cache");
3.如何检查一段字符串是否全由数字组成
4.如何获取机器信息
答本机ip
服务器名
服务器ip
服务器端口
服务器时间
iis版本
脚本超时时间
本文件路径
服务器cpu数量
服务器解译引擎
服务器操作系统
5.如何让日期相减
日期减去天数等于第二个日期
6.怎样通过asp的手段来检查来访者是否用了代理
""then
response.write"您通过了代理服务器,"&_
"真实的ip为"&request.servervariables("http_x_forwarded_for")
endif
%
7.获得窗口的大小
document.body.clientWidth,document.body.clientHeight
document.body.offsetWidth,document.body.offsetHeight
8.判断一个表是否存在:
if exists (select * from dbo.sysobjects where id = object_id('表名') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table 表名
GO
从publish 表中取出第 n 条到第 m 条的记录:
SELECT TOP m-n+1 *
FROM publish
WHERE (id NOT IN
(SELECT TOP n-1 id
FROM publish))
id 为publish 表的关键字
9.如何实现连续滚动
数据里面读出来的
10.只针对图片: