Questo è il codice della mia pagina...
mi da un errore nella linea 18 che ti evidenzio...
Non so neanche cosa sia il cursorlocation...
Non so dove sbattere la testa...
codice:
<%@LANGUAGE="VBSCRIPT"%>
<%
Dim rs_audio__MMColParam
rs_audio__MMColParam = "1"
If (Request.QueryString("IDaudio") <> "") Then
rs_audio__MMColParam = Request.QueryString("IDaudio")
End If
%>
<%
Dim rs_audio
Dim rs_audio_numRows
Set rs_audio = Server.CreateObject("ADODB.Recordset")
rs_audio.ActiveConnection = MM_conn_sancarlo_STRING
rs_audio.Source = "SELECT * FROM audio WHERE IDaudio = " + Replace(rs_audio__MMColParam, "'", "''") + ""
rs_audio.CursorType = 0
rs_audio.CursorLocation = 2
rs_audio.LockType = 1
rs_audio.Open()
rs_audio_numRows = 0
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Documento senza titolo</title>
</head>
<frameset rows="*" cols="109,*" framespacing="0" frameborder="no" border="0">
<frame src="audio.asp?IDaudio=<%=(Recordset1.Fields.Item("IDaudio").Value)%>" name="leftFrame" scrolling="No" noresize="noresize" id="leftFrame" title="audio" />
<frame src="inserimento1.asp" name="mainFrame" id="mainFrame" title="inserimento" />
</frameset>
<noframes><body>
</body>
</noframes></html>
<%
rs_audio.Close()
Set rs_audio = Nothing
%>