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

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -