problem in moving label in form

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • hitesh bhalkiya
    New Member
    • Feb 2008
    • 8

    problem in moving label in form

    how to move label in the form any other control has position property which use for moving control in the form but label do not have this property what to do ?
  • kenobewan
    Recognized Expert Specialist
    • Dec 2006
    • 4871

    #2
    Try placing in a div or span.

    Comment

    • Bassem
      Contributor
      • Dec 2008
      • 344

      #3
      Sure place it in a div is the logically solution or span, you can use tables in the design mode very easily.

      but if you are not familiar with HTML try this :
      Right click on the Label -> Style -> Position
      Change the position mode to absolutely position.
      Then you can move it with drag and drop any where.

      Thanks
      Bassem

      Comment

      • Frinavale
        Recognized Expert Expert
        • Oct 2006
        • 9749

        #4
        Like Bassem was saying, you can set the Label's style property...you can do this in the ASP code as well:

        [code=asp]
        <asp:label id="myLabel" runat="server" style="position :absolute; display:block;" ></asp:label>
        [/code]

        Comment

        Working...