FLASH
loadVariables(\"Sev1.asp\", this);
var DFNoRep = (totreg);
for (i=1; i<=DFNoRep; i++) {
this.Mailtxt += this[\"MailSev\"+i]+\",\";
}
if (i=DFNoRep) {
stop();
}
ASP
<%@ Language=VBScript %>
<%Response.Expires=-10000
response.addHeader \"pragma\",\"no-cache\"
response.addHeader \"cache-control\",\"private\"
Response.CacheControl = \"no-cache\"
%>
<%
Dim oConn, strSQL, objRS
Set oConn = Server.CreateObject(\"ADODB.Connection\")
oConn.Open(\"DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=\" & Server.MapPath(\"agenda.mdb\"))
strSQL = \"SELECT * FROM agenda where sev1= \'X\'\"
Set objRS = oConn.Execute(strSQL)
x=1
while (not objRS.Eof)
Response.Write \"&sev1\"&x&\"=\" & objRS(\"Email\")
objRS.MoveNext
x=x+1
wend
Response.write \"&totreg=\"&x-1
oConn.Close
set objRS = nothing
set oConn = nothing
%>
Por favor díganme de que otra manera puedo jalar toda la información de una columna de access y que se despliegue en un texinput
