E' proprio l'immagine...

[b]Questo è lo script che contiene il form:[b]

<%
dim intCodice
intCodice = request("Id")
if intCodice<>"" then
%>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link type="text/css" rel="stylesheet" href="../../stile/layoutindex.css">
</head>

<body>
<%
ID = Request.QueryString("ID")
dim strCode
strCode="innovatel"
dim intVolta
intVolta="0"

Set Conn=Server.CreateObject("ADODB.Connection")
strConn="driver={Microsoft Access Driver (*.mdb)}; "
strConn=strConn & " DBQ=" & Server.MapPath("/database/datidb.mdb")
strConn=strConn & ";pwd=" & strCode
Conn.Open strConn
sql = "select A.* from Dati A Where A.idDato =" &id
Set rs = Server.CreateObject("ADODB.Recordset")
rs.Open sql, conn ,3,3
%>
<FORM METHOD=POST ACTION="modifica2.asp?Id=<%=rs(0)%>">

<table width="700">
<tr>
<td id="bordocella2" bgcolor="#CCCCCC">Non compilare se è un saggio</td>
<td id="bordocella2" bgcolor="#CCCCCC">Corpo del Testo</td>
</tr>
<tr>
<td id="bordocella2" align="right">
Data: <input name="Data" type="text" value="<%=rs(12)%>">

Titolo Film:<input name="TitoloFilm" type="text" value="<%=rs(2)%>">

Regia: <input name="Regista" type="text" value="<%=rs(5)%>">

Attore/i: <input name="Attore" type="text" value="<%=rs(6)%>">

Altro: <input name="Nota" type="text" value="<%=rs(7)%>">
</td>
<td id="bordocella2" rowspan="3"><textarea name="Corpo" cols="50" rows="15" ><%=rs(8)%></textarea></td>
</tr>
<tr>
<td id="bordocella2" bgcolor="#CCCCCC">Form Comune</td>
</tr>
<tr>
<td id="bordocella2" align="right">
Titolo: <input name="Titolo" type="text" value="<%=rs(3)%>">

Relatore: <input name="Autore" type="text" value="<%=rs(4)%>">

Immagine: <input type="file" NAME="immagine" size=30 value="<%=rs(11)%>">

Immagine2: <input type="file" NAME="immagine2" size=30 value="<%=rs(9)%>">

Immagine3: <input type="file" NAME="immagine3" size=30 value="<%=rs(10)%>">
</td>
</tr>
<tr>
<td colspan="2" align="center">
<INPUT TYPE=SUBMIT VALUE="Modifica">
</td>
</tr>
</table>

</form>
<%
rs.Close
set rs = Nothing
conn.Close
set conn = Nothing
%>
</body>
</html>
<%
else
response.redirect "modifica.asp"
end if
%>