有关ASP分页问题!高手进!

来源:百度知道 编辑:UC知道 时间:2024/06/23 18:22:16
我的是一个产品图片展示的,比如说点击一个分类,然后会显示这个分类的图片,点击一个图片后就到了这个图片的详细页面,我需要在这个图片的详细页面中再显示与他同一个分类的前面或者后面十个小图片,或者用数字代替。
类似于下面图片的这种!
希望高手帮帮忙呀!加我QQ:78114502.注明:ASP分页!谢谢!

1:取出的时候.使用JS实现缩略图效果
JS代码如下!
<script language="JavaScript"><!--
//图片按比例缩放
var flag=false;
function DrawImage(ImgD){
var image=new Image();
var iwidth = 480; //定义允许图片宽度,当宽度大于这个值时等比例缩小
var iheight = 360; //定义允许图片高度,当宽度大于这个值时等比例缩小
image.src=ImgD.src;
if(image.width>0 && image.height>0){
flag=true;
if(image.width/image.height>= iwidth/iheight){
if(image.width>iwidth){
ImgD.width=iwidth;
ImgD.height=(image.height*iwidth)/image.width;
}else{
ImgD.width=image.width;
ImgD.height=image.height;
}

ImgD.alt=image.width+"×"+image.height;
}
else{
if(image.height>iheight){
ImgD.height=iheight;
ImgD.width=(image.width*iheight)/image.height;
}else{
ImgD.width=image.width;
ImgD.height=image.height;
}
ImgD.alt=image.width+"×"+image.height;
}
}
}
//调用:<img src="图片