Click here to Skip to main content
15,904,023 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Font six of controls getting changed after post back Pin
Sri_346415-Oct-07 23:46
Sri_346415-Oct-07 23:46 
GeneralRe: Font six of controls getting changed after post back Pin
Sandeep Akhare16-Oct-07 0:15
Sandeep Akhare16-Oct-07 0:15 
Questionquestion on MS_POSITIONING Pin
vanhawk15-Oct-07 23:10
vanhawk15-Oct-07 23:10 
AnswerRe: question on MS_POSITIONING Pin
Sathesh Sakthivel15-Oct-07 23:17
Sathesh Sakthivel15-Oct-07 23:17 
GeneralRe: question on MS_POSITIONING Pin
vanhawk15-Oct-07 23:32
vanhawk15-Oct-07 23:32 
GeneralRe: question on MS_POSITIONING Pin
Sathesh Sakthivel15-Oct-07 23:34
Sathesh Sakthivel15-Oct-07 23:34 
GeneralRe: question on MS_POSITIONING Pin
vanhawk15-Oct-07 23:39
vanhawk15-Oct-07 23:39 
GeneralRe: question on MS_POSITIONING Pin
mareers16-Oct-07 0:39
mareers16-Oct-07 0:39 
ASP.NET 1.1 to ASP.NET 2.0 Migration #2
I believe that MS_POSITIONING keyword is deprecated in ASP.NET 2.0.

ASP.NET 1.1

<body MS_POSITIONING="FlowLayout">

ASP.NET 2.0

By default, ASP.NET 2.0 is based on Flow Layout. So just remove the MS_POSITIONING keyword.

<body>

But how about GridLayout?

That is a very good question. Since all the ASP.NET 2.0 by default are based on FlowLayout, how can we change this?

ASP.NET 1.1

<body MS_POSITIONING="GridLayout">

ASP.NET 2.0

You still have to remove the keyword MS_POSITIONING like this:

<body>

But in order for you to use grid layout for absolute positioning of controls, do this:

In your VS 2005 IDE, click on Tools -> Options -> HTML Designer -> CSS Positioning

Then checks the "Change positioning to the following for controls added using the Toolbox, paste or drag and drop", then selects "Absolute Positioned"

OR you can do this:

Say you only want certain control to be absolute and others still based on flow layout. Select a control on the designer and then go to Layout -> Position

Change from Not Set to Absolute

--------
Thnks for posting this question. I too donno the answer. got this from some .net forum



--Sreeram
GeneralRe: question on MS_POSITIONING Pin
vanhawk16-Oct-07 14:10
vanhawk16-Oct-07 14:10 
Questionhow to find a content place holder in a master page dynamically Pin
scicorp15-Oct-07 22:59
scicorp15-Oct-07 22:59 
AnswerRe: how to find a content place holder in a master page dynamically Pin
Sandeep Akhare15-Oct-07 23:13
Sandeep Akhare15-Oct-07 23:13 
QuestionCollection Editor Problem Pin
Ujjaval Modi15-Oct-07 22:48
Ujjaval Modi15-Oct-07 22:48 
QuestionGridView with TextBox Control Pin
Elizma15-Oct-07 22:43
Elizma15-Oct-07 22:43 
AnswerRe: GridView with TextBox Control Pin
varshavmane15-Oct-07 22:46
varshavmane15-Oct-07 22:46 
GeneralRe: GridView with TextBox Control Pin
Elizma15-Oct-07 23:23
Elizma15-Oct-07 23:23 
GeneralRe: GridView with TextBox Control Pin
Sathesh Sakthivel15-Oct-07 23:33
Sathesh Sakthivel15-Oct-07 23:33 
GeneralRe: GridView with TextBox Control Pin
Elizma16-Oct-07 0:05
Elizma16-Oct-07 0:05 
GeneralRe: GridView with TextBox Control Pin
varshavmane15-Oct-07 23:39
varshavmane15-Oct-07 23:39 
GeneralRe: GridView with TextBox Control Pin
Elizma16-Oct-07 0:06
Elizma16-Oct-07 0:06 
GeneralRe: GridView with TextBox Control Pin
varshavmane16-Oct-07 0:31
varshavmane16-Oct-07 0:31 
Questionmaster page closing problem Pin
Sonia Gupta15-Oct-07 22:25
Sonia Gupta15-Oct-07 22:25 
AnswerRe: master page closing problem Pin
Piyush Vardhan Singh15-Oct-07 23:03
Piyush Vardhan Singh15-Oct-07 23:03 
AnswerRe: master page closing problem Pin
Sathesh Sakthivel15-Oct-07 23:10
Sathesh Sakthivel15-Oct-07 23:10 
JokeRe: master page closing problem Pin
Sandeep Akhare15-Oct-07 23:39
Sandeep Akhare15-Oct-07 23:39 
GeneralRe: master page closing problem Pin
Sonia Gupta15-Oct-07 23:41
Sonia Gupta15-Oct-07 23:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.