This article describes how to build ASP.NET applications using n-tier architecture. The benefits of having n-tier architecture is that all the modules having dedicated functionality will be independent of each other. Changing one tier will not effect other tiers and there is no single point of failure even if some tier is not working. Continue reading
ASP.NET
Understanding SQL Injection and Creating SQL Injection Proof ASP.NET Applications
This article talk about what SQLinjection is, how can that effect the security of our websites and what steps should be taken to create an ASP.NET application SQLinjection proof. Continue reading
Understanding ASP.NET Application and Page Life Cycle – A Beginner’s Tutorial
This article talks about the ASP.NET application life cycle and Page life cycle. We will try to see the what all events are usually of the importance for an ASP.NET developer and what needs to be done in these events. Continue reading
Rendering XML Data as HTML using XSL Transformation and ASP.NET XML Control
This article talks about how we can render XML data in an ASP.NET application. We will see how this can be done using XSLT transformations. Continue reading
Implementing User Profiles in ASP.NET – A Beginner’s Guide
This article discusses the basic of User Profiles. Why do we need user profiles and how to implement user profiles in ASP.NET. Continue reading
ASP.NET – How To Use(Open/Close) Connections Correctly
This small article discusses the right way of handling the Connections in an ASP.NET application. Continue reading
An Introduction to ASP.NET Dynamic Data from a Beginner’s Perspective
This article is a beginner’s tutorial on ASP.NET dynamic data websites. This article describes ASP.NET dynamic data in brief and implements a small dynamic data website for explanation. Continue reading
An Absolute Beginner’s Tutorial on Cross Site Scripting(XSS) Prevention in ASP.NET
In this article we will try to see what is Cross Site Scripting(XSS). We will try to see some samples that are vulnerable to XSS and try to inject some scripts. We will then see how we can prevent XSS attacks in an ASP.NET website. Continue reading
YaMessaging – A simple e-mail like messaging application
This article contains a small email application which is developed using ASP.NET, C#, and ADO.NET. Continue reading
Using Globalization and Localization in ASP.NET
This article is aimed at understanding how Globalization and Localization work in ASP.NET. Continue reading