%@ Language=VBScript %>
<%
Con.open
strSQL="SELECT * FROM tabella2 WHERE voce = 'inoltre_francese'"
set objRS = Server.CreateObject ("ADODB.Recordset")
objRS.Open strSQL,Con
testo=objRS("testo")
testo=server.htmlEncode(testo)
testo=Replace(testo, vbcrlf, "
")
testo=Replace(testo, " ", " ")
testo=Replace(testo, "((", "")
testo=Replace(testo, "))", "")
objRS.Close
Set objRS = Nothing
Con.Close
Set Con = Nothing
%>