1.

How To Make Vs.net Use Flowlayout As The Default Layout Rather Than The Gridlayout?

Answer»

For VB.NET, go to path C:Program Files Microsoft VISUAL Studio .NET Vb7 VBWizards WebForm Templates 1033

Change the following line in the existing WebForm1.aspx

<body MS_POSITIONING="[!output DEFAULT_HTML_LAYOUT]">to

For C#, go to path C: Program Files Microsoft Visual Studio .NET 2003 VC# VC# Wizards CSharp WebApp Wiz Templates 1033

Change the following line in the existing WebForm1.aspx

<body MS_POSITIONING="[!output DEFAULT_HTML_LAYOUT]">to

Note:Before changing any templates it's a GOOD idea to make backup COPIES of them Or rather than above approach you can change the behavior for new files on a per project basis in Visual Studio by:

  1. Right clicking on the project name (Ex: "WebApplication1)" in Solution Explorer, and select "Properties".
  2. From project properties window, under Common Properties>Designer Defaults>Page LAYOUT change "Grid" to "Flow".

For VB.NET, go to path C:Program Files Microsoft Visual Studio .NET Vb7 VBWizards WebForm Templates 1033

Change the following line in the existing WebForm1.aspx

<body MS_POSITIONING="[!output DEFAULT_HTML_LAYOUT]">to

For C#, go to path C: Program Files Microsoft Visual Studio .NET 2003 VC# VC# Wizards CSharp WebApp Wiz Templates 1033

Change the following line in the existing WebForm1.aspx

<body MS_POSITIONING="[!output DEFAULT_HTML_LAYOUT]">to

Note:Before changing any templates it's a good idea to make backup copies of them Or rather than above approach you can change the behavior for new files on a per project basis in Visual Studio by:



Discussion

No Comment Found