HTML beginner |
|
Beste Webbers,,
Ik sta voor een raadsel. Ik upload foto's naar database. Daar ligt in ieder geval geen probleem. Ik lees ze uit, dat werkt ook goed. Koppel ze aan bepaalde link ivm meerdere categorieen. Alles werkt goed. Alleen heb je bij sommige foto's dat de Height groter is dan bij de andere. Dus heb het over staande foto.
Ik kan ze wel een vaste grootte geven zoals hier onder staat aangegeven. Maar kan iemand me een script geven waarin het volgende kan:
- Dat er naar wordt gekeken wat voor fotos het zijn (liggende of staande)
- En dan de juiste waarde (HEIGHT en WIDTH) toepassen.
Dus voor liggende staan de waarde hier onder al afgebeeld in de code ( width=400 en height= 300). Dus de staande (width=400 en height=500)
Kan iemand me please helpen?
Hier onder de code die ik gebruik voor uitlezen ( kan iemand hem aanpassen?
<!-- #include file = "inc/db.asp" -->
<html>
<head>
<script>
if (parent.frames.length==0)
window.location.replace("index.asp")
</script>
</head>
<body leftmargin="0" topmargin="0" STYLE="background:transparent;">
<table width="575" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<%
soortid = request("id")
sql = "select * from link where id='"&soortid&"'"
Set rs = ECSdbc.Execute(sql)
if not rs.eof then
naam = rs("link")
end if
%>
<b><font size="2" face="Arial" color="#FFFFFF">Foto Gallery van <%=naam%></font></b><p>
</td>
</tr>
<tr>
</tr>
<tr>
<td>
<table border="0" width="570" bordercolor="#FFFFFF">
<%
Dim sql,rs,bestandsnaam,omschrijving,soort
soortid = request("id")
sql = "select * from afbeeldingen where soort='"&soortid&"'"
Set rs = ECSdbc.Execute(sql)
do while not rs.eof
id = rs("id")
bestandsnaam = rs("bestandsnaam")
omschrijving = rs("omschrijving")
soort = rs("soort")
%>
<tr>
<td width="400">
<img src="images/<%=bestandsnaam%>" width='400' height='300' border='0' hspace="5" vspace="5">
</td>
</tr>
<tr>
<td width="400">
<font size="2" face="Arial" color="#FFFFFF">
<%=omschrijving%><p>
</td>
</tr>
<%
rs.movenext
loop
%>
</table>
</td>
</tr>
</table>
</body>
</html>
<!-- #include file = "inc/db.asp" --> <html> <head> <script> if (parent.frames.length==0) window.location.replace("index.asp") </script> </head> <body leftmargin="0" topmargin="0" STYLE="background:transparent;"> <table width="575" border="0" cellpadding="0" cellspacing="0"> <tr> <td> <% soortid = request("id") sql = "select * from link where id='"&soortid&"'" Set rs = ECSdbc.Execute(sql) if not rs.eof then naam = rs("link") %> <b><font size="2" face="Arial" color="#FFFFFF">Foto Gallery van <%=naam%></font></b><p> </td> </tr> <tr> </tr> <tr> <td> <table border="0" width="570" bordercolor="#FFFFFF"> <% Dim sql,rs,bestandsnaam,omschrijving,soort soortid = request("id") sql = "select * from afbeeldingen where soort='"&soortid&"'" Set rs = ECSdbc.Execute(sql) do while not rs.eof id = rs("id") bestandsnaam = rs("bestandsnaam") omschrijving = rs("omschrijving") soort = rs("soort") %> <tr> <td width="400"> <img src="images/<%=bestandsnaam%>" width='400' height='300' border='0' hspace="5" vspace="5"> </td> </tr> <tr> <td width="400"> <font size="2" face="Arial" color="#FFFFFF"> <%=omschrijving%><p> </td> </tr> <% rs.movenext loop %> </table> </td> </tr> </table> </body> </html>
|