Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Adjusting controls on the page
Message
Information générale
Forum:
ASP.NET
Catégorie:
Autre
Versions des environnements
Environment:
C# 3.0
OS:
Windows XP
Network:
Windows 2003 Server
Database:
MS SQL Server
Divers
Thread ID:
01338176
Message ID:
01338227
Vues:
13
This message has been marked as a message which has helped to the initial question of the thread.
>Hi everybody,
>
>Is there some trick that let me place the controls the way I want in a page?
>

You can either use CSS and div tags, or just use an HTML table. The table is probably easier to get set-up.

>I want to have

>Search where dropdown
>
>by name by description by date on the same line
>
>DropDown for Events and GO button next to it.
>

Something like:
<table border="0">
  <tr>
     <td colspan="3">Search where dropdown</td>
     <td></td>
     <td></td>
  </tr>
  <tr>
     <td>by name</td>
     <td>by description</td>
     <td>by date on the same line</td>
  </tr>
  <tr>
     <td>DropDown for Events</td>
     <td>GO button next to it.</td>
     <td></td>
  </tr>
</table>
Each TR tag is a new row, each TD is a new column.
-Paul

RCS Solutions, Inc.
Blog
Twitter
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform