AVCajipe's Blog
On javascript, asp.net, xml, architecture and other topics in the development space
Sign in
|
Join
|
Help
Home
Contact
About
RSS for Posts
Atom
RSS for Comments
Great Resources
Tags
.net
ActiveX
ajax
asp.net
breakpoints
Business
c#
Cache
character
client-side events
CSV
DBauer
debugging
Declarative Programming
dynamic queries
email validation
enum
events
exporting
Grid
javascript
linq to xml
strings
text
xml
Archives
January 2010 (1)
December 2009 (3)
September 2009 (2)
August 2009 (3)
July 2009 (13)
June 2009 (3)
May 2009 (3)
April 2009 (6)
Resume & Microsoft Transcript
Transcript can be viewed here
Transcript ID:
795329
Access Code:
avc791643
Stuff I read
Official ASP.NET MVC Site
On Certification these days
Web Developer Cheat Sheets
Podcasts for .net developers
Comparing Web Forms And ASP.NET MVC
Explore Rich Client Scripting With jQuery, Part 1
East-Oriented Design
Healthy Developer
Loading...
June 2009 - Posts
2
Comments
Practical C# 4: Getters and setters get faster with .net 3.5
by
avcajipe
I used to write basic class property implementations this way. This was boring and repetitive. Style 1: public class CaseDetails { public CaseDetails() { } private string _impact = "" ; private string _capacity = "" ; public string...
Filed under:
c#
2
Comments
Practical Javascript 6: Debugging JS @ runtime
by
avcajipe
I’ve said it before and I’ll say it again. I just love being able to debug javascripts and put breakpoints at runtime with Visual Studio or with the free Visual Web Developer.
Filed under:
javascript
,
breakpoints
,
debugging
1
Comments
Practical C# 3: Programmatic Caching
by
avcajipe
Caching is the process of storing frequently used data on the server to fulfill subsequent requests. Grabbing objects from memory is always much faster than re-creating the web pages or items contained in them from scratch each time they are requested...
Filed under:
c#
,
Cache
,
Performance