Web Page using C#

Tongue TiedI created a new web page in VStudio 2003.  Then I drag a control (any control) over to the web page.  VS snaps the control to the top left corner of the page and when I try and move it, it snaps it back to the top left of the page. 

Before you ask, yes, my page layout is GridLayout.

Any suggestions

Thanks


Answer this question

Web Page using C#

  • homerc44

    hi

    may be u can reposition these type of controls by editting the html code

    example u can insert some <br> to make the position of the control down by a line
    instead of being the most top left corner

    ex:

       <br>
       <br>
       <br>
       <br>
       
        <asp:Repeater id="Repeater1" runat="server">
        </asp: repeater>

  • Jibbles

    Hi Mr. B -
    The best place to post this question would be in the ASP.net forums (http://forums.asp.net/).

    Thanks!
    Karen

  • Web Page using C#