Ciao a tutti, iscritto per disperazione!!!
Ho una pagina in cui si inseriscono le news in un portale: con l'avvento del grande IE7 questa pagina, una volta premuto il bottone "invia" salva DUE (2) volte la news, mentre con Firefox o anche IE6 NON da alcun problema.

Questa è la pagina con cui salvo i dati:
codice:
<%
if request("data") = "" then
data = Date()
else
data = request("data")
end if

if request("titolo") = "" then
errore = true
else
titolo = replace(request("titolo"), "'", "&#39;")
end if

if request("testo") = "" then
errore = true
else
testo = replace(request("testo"), "'", "&#39;")
end if

if errore = true then
Response.Redirect("/news/new3.asp?errore=1&titolo=" & titolo & "&testo=" & testo)
end if


SQL = "INSERT INTO tnews(data, ora, titolo, testo, IDuser, attivo) VALUES ('" & data & "', '" & Time() & "', '" & titolo & "', '" & testo & "', '" & Request.Cookies("CPortal")("IDuser") & "', 1)"

Set rs = Server.CreateObject("ADODB.Recordset")
rs.Open SQL, cn, 3, 3

Set rs = Nothing
Set SQL = Nothing

SQL = "SELECT TOP 1 ID FROM tnews ORDER BY ID DESC"
Set rs = Server.CreateObject("ADODB.Recordset")
rs.Open SQL, cn, 3, 3
IDNews = rs.fields("ID")
rs.Close
Set rs = Nothing

cn.Close
Set cn = Nothing

if request("passabottone") = "SaveAddImage" then
Response.Redirect("/news/05_uploadimage.asp?ID=" & IDNews)
Response.End()
else
Response.Redirect("/news/home.asp")
Response.End()
end if
%>
Mi sembra che tutto funzioni correttamente (come infatti funziona in FF!).

Per favore, necessito di una soluzione il più rapida possibile,
grazie a tutti!!!!