|
|
|
จะทำยังไงให้ colorbox มันโชว์รูปขึ้นมาครับจาก subfolder |
|
|
|
|
|
|
|
ผมได้ลองทำ colorbox ดูแล้วอ่ะครับ ปรากฏว่ามันติดถ้าเี่ราใช้เดียว เช่น Gallery/images1.jpg แต่ถ้าอยู่ใน subfolder เช่น Gallery/sport/images1.jpg มันกับไม่ขึ้นรูปอ่ะครับ มันเป็นที่อะไรอ่ะครับ
Code (ASP)
<html>
<head>
<title>Gallery Photo</title>
<link media="screen" rel="stylesheet" href="../styles/colorbox/colorbox.css">
<script type="text/javascript" src="../styles/colorbox/jquery.min.js"></script>
<script type="text/javascript" src="../styles/colorbox/jquery.colorbox.js"></script>
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$(".galery").colorbox({rel:'galery', slideshow:true});
});
/*$(document).ready(function(){
$("area[rel^='prettyPhoto']").prettyPhoto();
$("a[rel^='prettyPhoto']").prettyPhoto({ animation_speed:'normal',theme:'light_square',slideshow:3000, autoplay_slideshow: true });
$("a[rel^='prettyPhoto']").prettyPhoto({ animation_speed:'fast',slideshow:3000, hideflash: true });
});*/
</script>
</head>
<body>
<%
Session.CodePage="65001"
dim con
set con=Server.CreateObject("ADODB.Connection")
con.open "Provider=SQLOLEDB.1;Persist Security Info=False;User ID=WebMed_User;Password=Warm104Pro;Initial Catalog=WebMed;Data Source=10.7.51.84"
'con.open "Provider=SQLOLEDB.1;Persist Security Info=False;User ID=sa;Password=1234; Initial Catalog=med;Data Source=PANICHA-PC"
Dim sql,rec
sql = "SELECT * FROM album WHERE AlbumID = '" & Request.QueryString("view") & "' "
Set rec = Server.CreateObject("ADODB.Recordset")
rec.open sql,con,1,1
%>
<h1><%=rec.fields("albumname").value%></h1>
<%
Dim sql2,rec2,i
sql2="Select * from gallery where albumid='" & Request.QueryString("view") & "' order by galleryid asc "
Set rec2 = Server.CreateObject("ADODB.Recordset")
rec2.open sql2,con,1,1
Response.Write ("<table><tr>")
i=0
While Not rec2.EOF
Response.Write ("<td>")
i=i+1
%>
<center>
<a href="Gallery/<%=rec2.fields("galleryshot").value%>" class="galery" title="<%=rec2.fields("galleryname").value%>"><img src="Gallery/<%=rec2.fields("galleryshot").value%>" width="100" height="100"></a><br>
<%=rec2.fields("galleryname").value%>
<br>
</center>
<%
Response.Write ("</td>")
If i Mod 4 = 0 Then
Response.Write ("</tr>")
End If
rec2.movenext
Wend
Response.Write ("</td></table>")
%>
</body>
</html>
Tag : ASP, Ms SQL Server 2005, HTML/CSS, jQuery
|
|
|
|
|
|
Date :
2012-11-29 11:40:36 |
By :
Clamore |
View :
1512 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่ได้อ่ะครับรูปยังไม่ขึ้นเหมือนเดิม
|
|
|
|
|
Date :
2012-11-30 09:12:38 |
By :
Clamore |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|