Dot Net Knowledges Base

This Page is aimed to help developers to learn Microsoft .NET and allied technologies. We provide articles and tutorials in a simple and lucid language. our content targets beginner to advanced level developers.

Latest Articles

  • Developing Factory Class for SQL and OLEDB Data Providers

    Introduction While developing a real life software project you need to take in to account many things. One of these things is the choice of database. Most of the times your client will have predefined database (e.g. SQL Server or Oracle). However,...

    Read more...
    10/24/2007 12:00:12 AM Category ADO.NET SQL
  • Uploading and retrieving images from SQL Server

    Introduction Some times we need to store binary data in database. SQL Server provides a special data type called image that can hold such binary data. The examples of binary data include images, documents etc. In this article we will see how...

    Read more...
    10/23/2007 11:58:37 PM Category ADO.NET SQL
  • Creating DataSet Programmatically

    Introduction ADO.NET provides a powerful way to create objects like dataset and datatale dynamically through code. This code sample illustrates these capabilities of ADO.NET. Namespace involved We will need following...

    Read more...
    10/23/2007 11:57:23 PM Category ADO.NET DataSet
  • Introduction to ADO.NET

    ADO.NET is next generation of data access technology from Microsoft target at .NET platform. ADO.NET is built with distributed and internet applications in mind. ADO.NET provides strong support for XML and disconnected data processing...

    Read more...
    10/23/2007 11:55:22 PM Category ADO.NET
  • Overview of ADO.NET

    ADO.NET provides consistent access to data sources such as Microsoft SQL Server, as well as data sources exposed through OLE DB and XML. Data-sharing consumer applications can use ADO.NET to connect to these data sources and retrieve, manipulate, and...

    Read more...
    10/23/2007 11:53:00 PM Category ADO.NET
  • Creating HttpHandlers and HttpModules

    Introduction ASP.NET allows you to extend its functionality in two main ways : HttpHandlers HttpModules Http handlers are special applications that typically handle files with certain extension. For...

    Read more...
    10/23/2007 11:48:49 PM Category ASP.NET HTTP Modules
  • Windows Authentication in ASP.NET

    Introduction Security is an important consideration in your web applications. Securing a web application consists of two steps : Authenticating the user accessing the page Authorizing the user to access...

    Read more...
    10/23/2007 11:46:59 PM Category ASP.NET Authentication