scusa, credevo che il codice fosse deducibile dal link...
quello della pagina è questo:
codice:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Documento senza titolo</title> <style> #tab2 th { font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold; color: #FFFFFF; background-color: #FF9900; padding-right: 5px; padding-left: 5px; text-align: center; padding-top: 1px; padding-bottom: 1px; } #tab2 td input { border: 1px solid #999999; font-family: Arial, Helvetica, sans-serif; font-size: 11px; color: #666666; background-color: #FFFFFF; margin: 0px; padding-top: 1px; padding-right: 3px; padding-bottom: 1px; padding-left: 3px; } #tab2 h1 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold; color: #CC0000; background-color: #FFFFFF; text-align: justify; margin: 0px; padding: 0px; } #tab2 td { font-family: Arial, Helvetica, sans-serif; font-size: 11px; font-weight: bold; color: #666666; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #CCCCCC; padding-top: 2px; padding-right: 5px; padding-bottom: 2px; padding-left: 5px; } .fondo1 { background-color: #E5E5E5; } .fondo0 { background-color: #FFFFFF; } </style> </head> <body> <table width="950" border="0" align="center" cellpadding="3" cellspacing="3" id="tab2"> <tr><th>sess</th><th>Nome</th><th>Cognome</th><th>indirizzo</th><th>Citta</th><th>Cap</th><th>prov</th><th>Tel</th><th>Mail</th> <th>donazione</th><th>confermata</th><th>data</th><th>tipo</th><th>favore</th> </tr> <%t = 0 db = dbconnect(ObjConn,SYSTEM_DB_NAME) chk_don = setrs(rsDon,"select * from donazione ",ObjConn) if chk_don = true and rsDon.recordcount > 0 then while not rsDon.eof t = t+1 fondo = "fondo"&(t mod 2) %> <tr valign="top" class="<%=fondo%>" ><td><%= rsDon("sessione") %></td><td><%= rsDon("Nome") %></td> <td><%= rsDon("Cognome") %></td> <td nowrap="nowrap"><%= rsDon("indirizzo") %></td> <td><%= rsDon("citta") %></td> <td><%= rsDon("cap") %></td> <td><%= rsDon("provincia") %></td> <td><%= rsDon("telefono") %></td> <td><%= rsDon("email") %></td> <td>€<%= formatnumber(rsDon("donazione"),2) %></td> <td><%if cint( rsDon("confermata")) = 0 then response.Write("No") else response.Write("Sì") end if%></td> <td nowrap="nowrap"><%= rsDon("data") %></td> <td><%= rsDon("tipo_utente") %></td> <td nowrap="nowrap"><%= rsDon("favore") %></td> </tr> <% rsdon.movenext wend end if unsetrs(rsDon) %> </table> </body> </html>
la pagina col form è questa:
http://www.centropaoloalberto.org/do...ionionline.asp
Grazie!