VB.Net

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
Kalyan said:
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
 
Back
Top