problem placing controls

robertm

New member
Joined
Oct 12, 2006
Messages
3
Programming Experience
Beginner
I am using visual studio 2005 to build a small web app/site

I have a table (from HTML toolbox) where I want to drop asp.net controls(from standard toolbox) into different cells.
When I do this and load the page the controls are not constrained to the cells where they were placed in fact they are all over the page. How do I get them to stay where they are put?

VB.NET:
      <td colspan="2" style="width: 275px; height: 36px">
      <asp:HyperLink ID="HyperLink3" runat="server" NavigateUrl="~/PassWordRecovery.aspx"
       Style="z-index: 101; left: 44px; position: absolute; top: 34px" Width="75px" Font-Bold="True">Forgot your password.</asp:HyperLink>
      </td>
TIA
 
Last edited:
Remove the elements Style directive "position: absolute"
 
Back
Top