N on riesco a stampare a video il risultato di questa query
<%
ConnString = "Provider=MSDAORA;Data Source=GERMCONN;User ID=epos_dev;Password=epos_dev;"
Set cnnDBobj = Server.CreateObject("ADODB.Connection")
set rs=Server.CreateObject("ADODB.Recordset")
cnnDBobj.Open ConnString
'if err.Description = "ForGIAPI_InsertLegalRepr--Customer AFM00" then
query="SELECT SIC_RETURN_ERROR_DESC_GRE FROM SIC_ERROR WHERE SIC_RETURN_ERROR_CODE='126'"
Set rs = connessione.execute(query)
Response.Write (rs.fields("SIC_RETURN_ERROR_DESC_GRE"))
Response.Write
Response.End 'cause stop processing the asp page
'end if
%>
pierpaolo234