Arkadaşalar filmler adında bir tablom var ve bu tablo içerisinde Part adında bi index im var. bu part adında index e çoklu kayıt eklemek istiyorum.
part index i içerisine kayıt eklerken. asp ile her link arasını | işareti ile ayırmak
sanırım anlata bildim mesela
<input type="file" name="file1">
<input type="file" name="file2">
<input type="file" name="file2"> gibi girerekten.


htt://linkadresi.com/film.flv|http://2.linkadresi.com/2.film.flv|http://3.linkadresi.com/3.film.flv

bunun gibi çoklu kayıt yapmak istiyorum sadece part index i içerisine. resim upload şekli elimde var ama kod karışık upload ı kayıt şekline dönüştüremedim yardımlarınızı bekliyorum şimdiden teşekkürler.


düzenleyecegim sayfa aşagıdakidir: yardımınızı bekliyorum arkadaşlar.

<%
bolum = Request.querystring("yer")
if bolum="save" then
call save_part
end if
%>
<script language="javascript">
function sira(data)
{
say = document.getElementById('sayi').value;
document.location.href='?sayi=' + say
}
</script>
<div align="center">
<form name="form" method="post" onsubmit="return form_validator()" action="?yer=save">
<table cellpadding="0" cellspacing="0" width="154" height="21">
	<tr>
<td height="21" width="129" valign="bottom">
<input type="text" id="sayi" name="sayi" value="Yukleme Adedini Gir" onblur="if(this.value=='') this.value='Yukleme Adedini Gir';" onfocus="if(this.value=='Yukleme Adedini Gir') this.value='';" size="24"></td>
		<td height="21" width="25">
		<input type="button" value="Listele" name="a" onclick="sira('a')" style="height:20;width:58"></td>
	</tr>
</table>
<table cellpadding="0" cellspacing="0" width="357" height="46">
	<tr>		</td>

		<td height="21" width="320">
<%
sayi = request.querystring("sayi")
if sayi = "" then
sayi = 1
end if
for sayac = 1 to sayi%>
<input type="text" name="title<%=sayac%>" size="44">
<%next%>
		</td>
		<td height="21" width="37">Başlık</td>
	</tr>
	<tr>
		<td height="25" valign="top" width="357" colspan="2">
		<input type="submit" value="Gönder" name="B3"></td>
	</tr>
</table>
</form>
</div>
<%
sub save_part
a = temizle(request.form("title"))
d = Date
if a = "" then
response.write "bos alan bırakmayınız"
response.end
end if
set kd = Baglantim_h.execute("INSERT INTO videolar (part,tarih) VALUES ('" & a & "','" & d & "')")
response.write "part eklendi"
response.end
end sub
%>