Ray's Asp.net Blog
Answers and code snippets from ASP.NET projects (Webforms/MVC/Classic ASP)
Pages
Event registration app with QR/Paypal
Home
Wednesday, March 16, 2011
SCRUM, one of agile methodologies
Keyword: iterative, incremental
Reference:
http://en.wikipedia.org/wiki/Scrum_%28development%29
Good code is cheap code
Plan your code to be cheap
:
Use patterns where they are going to be beneficial and will save you time;
Ignore the patterns that will not (e.g. when was the last time you ported a system to a different DB?);
Use frameworks where appropriate to speed up development;
Refactor when required, don’t get ahead of yoursel
f;
http://www.geekm.ag/Archive/Good_code_is_cheap_code
Tuesday, March 15, 2011
Cryptographic oracles, Understanding the ASP.NET Vulnerability
http://blogs.technet.com/b/srd/archive/2010/09/17/understanding-the-asp-net-vulnerability.aspx
ASP.NET Sprites, Image Optimization
http://www.hanselman.com/blog/NuGetPackageOfTheWeek1ASPNETSpriteAndImageOptimization.aspx
How to set default menu item in ASP.NET Menu control
foreach
(
MenuItem
m
in
menus.Items)
{
if
(m.Value == menuSelectedValue)
m.Selected =
true
;
}
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)