How to shrink the ASPX page
Posted
by salvationishere
on Stack Overflow
See other posts from Stack Overflow
or by salvationishere
Published on 2010-04-15T03:04:29Z
Indexed on
2010/04/15
3:13 UTC
Read the original article
Hit count: 306
I am developing a C#/ASP.NET web application in VS 2008. Currently this page is too tall. The buttons appear on top and then there is a large gap between these buttons and the resultLabel text. The following code is from my ASPX file. I have tried switching to the Design tab of this file and manually moving this label, but there is still a large gap. I'm sure this is simple. How do I correct this?
Text="Now select from the dropdownlists which table columns from my database you want to map these fields to">
<table align="center"><tr>
<td style="text-align: center;width: 300px;">
<asp:Label ID="resultLabel" runat="server" style="position:absolute; text-align:center; top:148px; left: 155px;"
Visible="False"></asp:Label>
</td></tr></table>
<p>
© Stack Overflow or respective owner