|
|
||||||||||||
trovati da 1 a 1 su 1
|
||||||||||||
<%@LANGUAGE="JAVASCRIPT" CODEPAGE="1252"%>
<%
var Recordset1 = Server.CreateObject("ADODB.Recordset");
Recordset1.ActiveConnection = MM_comoto_STRING;
Recordset1.Source = "SELECT * FROM sito ORDER BY data DESC";
Recordset1.CursorType = 0;
Recordset1.CursorLocation = 2;
Recordset1.LockType = 1;
Recordset1.Open();
var Recordset1_numRows = 0;
%>
<%
var nazione = Server.CreateObject("ADODB.Recordset");
nazione.ActiveConnection = MM_comoto_STRING;
nazione.Source = "SELECT * FROM nazioni";
nazione.CursorType = 0;
nazione.CursorLocation = 2;
nazione.LockType = 1;
nazione.Open();
var nazione_numRows = 0;
%>
<%
var lingua = Server.CreateObject("ADODB.Recordset");
lingua.ActiveConnection = MM_comoto_STRING;
lingua.Source = "SELECT * FROM lingue";
lingua.CursorType = 0;
lingua.CursorLocation = 2;
lingua.LockType = 1;
lingua.Open();
var lingua_numRows = 0;
%>
<% Recordset1.Close(); %> <% nazione.Close(); %> <% lingua.Close(); %> |
||||||||||||