| 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:
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: |
|