Object oriented programming is a successful paradigm shift from procedural world. Representing a real world entity through an object and encapsulating data and behavior together in an object are some of basics of OOPS world. Object oriented has showered us with many benefits esp. code re usability through inheritance and abstraction. At the same time, we are pushed into complex world...
Monday, October 26, 2009
Thursday, October 22, 2009
ASP.Net Instrumentation - Tracing
Tracing in ASP.NET 3.5:
Tracing is a way to monitor the execution of your ASP.NET application. You can record exception details and program flow in a way that doesn’t affect the program’s output. In ASP.NET 3.5, there is rich support for tracing. The destination for trace output can be configured with...
Membership provider and Login controls explained in ASP.NET 3.5
New Security Features in ASP.NET 3.5
Security is an important attribute of any ASP.NET application. The authentication and authorization of users and resistance against the malicious attacks are important tasks in web applications. In ASP.NET 1.x introduced new authentication service called Forms-based...