|
<% ' Get ecoalbergo
sqlString = " Select * " &_
"FROM testi " &_
"WHERE testi_tipo = 'ecoalbergo' "
SET homeRS = Con.Execute( sqlString )
%>
<%
strVarDiary = homeRS("testi_desc")
if Len(strVarDiary) > 480 then strVarDiary = left(strVarDiary,480) & "..."
Response.Write strVarDiary
homeRS.close
set homeRS = nothing
%> |
|
|
|
|
<% ' Get a tavola
sqlString = " Select * " &_
"FROM testi " &_
"WHERE testi_tipo = 'tavola' "
SET homeRS = Con.Execute( sqlString )
%>
<%
strVarDiary = homeRS("testi_desc")
if Len(strVarDiary) > 440 then strVarDiary = left(strVarDiary,440) & "..."
Response.Write strVarDiary
homeRS.close
set homeRS = nothing
%> |
|
|
|