c# - ASP.NET Webform - How to place FormView and GridView next to each other -


in webform have gridview , formview. formview appears under gridview. how move formview right of gridview?

gridview , formview render tables, 1 way use 1 warper table place side side. of course tables not modern design , better use divs... ok fast solution.

<table>     <tr>         <td>             <asp:gridview></asp:gridview>             </td>         <td>             <asp:formview></asp:formview>         </td>     </tr> </table> 

Comments

Popular posts from this blog

android - net_scheduler holding wakelock -

sql - MySQL : Getting Entries from a many-to-many table -

java - Retrieving data from database using jsp (Hibernate + Spring + Maven) -