Ciao a tutti... vorrei sapere come fare ad affiancare più controlli nella mia pagina aspx...ho due panels che vorrei mettere vicini, ma non ci riesco perché vanno automaticamente a capo.Ringrazio anticipatamente
![]()
Ciao a tutti... vorrei sapere come fare ad affiancare più controlli nella mia pagina aspx...ho due panels che vorrei mettere vicini, ma non ci riesco perché vanno automaticamente a capo.Ringrazio anticipatamente
![]()
Iscrivetevi su:
www.studentsmeeting.forumitalian.com!! E' gratis e utile!
C'è anche la sezione "compiti"!!!!!!!!!
intabellarli ?
press play on tape
-----
MP3 Listing
https://sourceforge.net/projects/mp3-listing
File Listing
https://sourceforge.net/projects/file-listing-2-0/
no,s emplicemente metterli uno di fianco all'altro
Iscrivetevi su:
www.studentsmeeting.forumitalian.com!! E' gratis e utile!
C'è anche la sezione "compiti"!!!!!!!!!
si avevo capito, dicevo: intabellarli non va bene ?
una tabella con una sola riga e due colonne.
press play on tape
-----
MP3 Listing
https://sourceforge.net/projects/mp3-listing
File Listing
https://sourceforge.net/projects/file-listing-2-0/
Ehi! ma sapete che esistono pure i css?C'è un forum dedicato con persone espertissime, una guida in linea su html.it.
ps. Come ha detto il nostro moderatore, non mi vergognerei neanche io di usare una tabella![]()
![]()
Pietro
codice:<%@ Page Language="VB" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <script runat="server"> </script> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> <style type="text/css"> body { font-family: Verdana; } .generale { border: 1px red solid; width:300px; height:300px; } .l { float:left; } .cl { clear:left; } .ms { margin-left:-1px; } .mt { margin-top: -1px; } </style> </head> <body> <form id="form1" runat="server"> <div> <span>prima</span> <asp:Panel ID="Panel1" runat="server" CssClass="generale l"></asp:Panel> <asp:Panel ID="Panel2" runat="server" CssClass="generale l ms"></asp:Panel> <div class="cl" style="height:1px; width:100%"></div> <span>dopo</span> </div> </form> </body> </html>
Pietro