Home > Archive > ASP .NET > April 2005 > Best practices in ASP.NET application development
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Best practices in ASP.NET application development
|
|
| Amelyan 2005-04-29, 8:59 pm |
| Could anyone recommend a book (or a web site) that defines best practices in
ASP.NET application development?
E.g.
1) Precede your control id's with type of control btnSubmit, txtName, etc.
2) Group relevant .aspx files into subfolders within your project
etc.
| |
| Robbe Morris [C# MVP] 2005-04-30, 4:00 am |
| Microsoft best practices don't deal a whole lot with naming conventions.
Hungarian notation has kind of gone by the waysite.
The best practices really focus on important stuff such as security,
performance,
and object oriented practices. Where you put your files and what you
name variables just isn't that important anymore.
--
2005 Microsoft MVP C#
Robbe Morris
http://www.robbemorris.com
http://www.masterado.net/home/listings.aspx
"Amelyan" <bamelyan@wi.rr.com> wrote in message
news:eBlto9PTFHA.2812@TK2MSFTNGP09.phx.gbl...
> Could anyone recommend a book (or a web site) that defines best practices
> in ASP.NET application development?
>
> E.g.
> 1) Precede your control id's with type of control btnSubmit, txtName, etc.
> 2) Group relevant .aspx files into subfolders within your project
> etc.
>
| |
| Steve C. Orr [MVP, MCSD] 2005-04-30, 4:00 am |
| Yes, here are some naming conventions and design guidelines recommended by
Microsoft:
http://msdn.microsoft.com/library/d...nguidelines.asp
--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
"Amelyan" <bamelyan@wi.rr.com> wrote in message
news:eBlto9PTFHA.2812@TK2MSFTNGP09.phx.gbl...
> Could anyone recommend a book (or a web site) that defines best practices
> in ASP.NET application development?
>
> E.g.
> 1) Precede your control id's with type of control btnSubmit, txtName, etc.
> 2) Group relevant .aspx files into subfolders within your project
> etc.
>
|
|
|
|
|