comment dois je utiliser window.href? où dois je le mettre?
si tu veux voila ce que j'ai fais et qui ne fonctionne pas car la variable contenu ne se retrouve pas en asp...
<html>
<head>
<title>suppression des notes d'informations</title>
</head>
<body bgcolor="#52A6DE">
<center>
<%'------recuperation des valeurs------%>
<%
titre = Request.Form("suppr" )
%>
<%'------lecture du contenu de information.txt pour sauvegarder ce qu'il contient dans une variables------%>
<%
Set fso = CreateObject("Scripting.FileSystemObject" )
fich = "information.txt"
chemin_fich = Server.MapPath(fich)
Set Out = fso.OpenTextFile(chemin_fich,1,FALSE,FALSE)
contenu=Out.readline
set fso= nothing
%>
<Script language=JavaScript>
titre=<%=titre%>;
contenu=<%=contenu%>;
lg=contenu.length;
i=contenu.indexOf(titre);
j=contenu.lasrIndexOf("<",i);
i=i+titre.length+4;
contenu=contenu.substring(0,j)+contenu.substring(i,lg);
</script>
<%'------ecriture des noms dans information.txt------%>
<%
Set fso = CreateObject("Scripting.FileSystemObject" )
fich = "information.txt"
chemin_fich = Server.MapPath(fich)
Set f1 = fso.CreateTextFile(chemin_fich,True)
f1.write contenu
f1.close
set f1=nothing
set fso=nothing
%>
je ne sais pas si je ne ferais pas mieux de tt faire cote serveur, mais a ce moment là je ne connais pas la syntaxe en VBS de ce que j'ai fait en JS...
---------------
rom...