VB.Net

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • =?Utf-8?B?S2FseWFu?=

    #1

    VB.Net

    I am VB/ASP developer, Now entering .Net environment. Here is my quesiton, I
    Installed VS 2005. I am trying to create new web site, In the web form, I
    pulled text box from tool menu and drop it. It sits on upper left hand side
    cornor of the form, when i try to move to required place, it is not allowing
    me to move. Is there any environmental setting i need to do.

    Not only any Text box, for command button, label, etc.. nothing i can move.
    I Installed default setting.

    any help?

    thanks in advance
    KK

  • pvdg42

    #2
    Re: VB.Net


    "Kalyan" <Kalyan@discuss ions.microsoft. comwrote in message
    news:030A5CED-5A89-4C45-B9CC-9984E2F611BE@mi crosoft.com...
    >I am VB/ASP developer, Now entering .Net environment. Here is my
    >quesiton, I
    Installed VS 2005. I am trying to create new web site, In the web form,
    I
    pulled text box from tool menu and drop it. It sits on upper left hand
    side
    cornor of the form, when i try to move to required place, it is not
    allowing
    me to move. Is there any environmental setting i need to do.
    >
    Not only any Text box, for command button, label, etc.. nothing i can
    move.
    I Installed default setting.
    >
    any help?
    >
    thanks in advance
    KK
    >
    That's because the page layout is managed by a layout manager by default.
    I'd suggest you find some articles or books that address ASP.NET 2.0
    development to learn how it works. Although working with the layout manager
    (using tables, etc.) is the preferred way to go, you can also circumvent the
    layout manager by:

    (with a control, or multiple controls selected)

    Layout->Position->Absolute


    Comment

    Working...