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

  • Introduction to ASP.NET Validation controls

    Introduction ASP.NET provides a set of web controls called validation controls that are used to validate HTML forms. This article discusses various types of validation controls available with code samples. What are validation controls? Most...

    Read more...
    10/23/2007 11:44:32 PM Category .Net General
  • Introduction to ASP.NET web controls

    Introduction This Q.A. series provides you with reference as well as examples of using ASP+ web controls. At the end of the series you will find a ZIP file for download which contains sample ASP+ pages. This Q.A mainly focuses on non-data...

    Read more...
    10/23/2007 11:41:51 PM Category .Net General
  • Introduction to ASP.NET

    Introduction ASP.NET provides a true language-neutral execution framework for Web applications to use. This provides language independence as long as the language is supported by NGWS framework. This means weather you use C#, VB,...

    Read more...
    10/23/2007 11:37:58 PM Category .Net General
  • ASP.NET File Upload

    Introduction With plain, old ASP uploading a file from client browser to the server was a tedious task. Developers either used some third party controls or wrote their own file upload utilities. ( Remember BinaryRead and searching of crlf...

    Read more...
    10/23/2007 11:35:53 PM Category File Uploading
  • Implementing a Fixed GridView Header in ASP.NET

    This article looks at two new ASP.NET Web controls, the GridView and the Panel. The GridView is an updated variant of the basic grid, and the Panel supports a locatable, scrollable region. The ability to scroll...

    Read more...
    10/23/2007 11:22:31 PM Category GridView
  • Executing External Applications From Your .NET Application

    Introduction In some cases you need to execute some external application from your own application. The common candidates for such task are: Running BCP in SQL Server Running batch scripts that automate...

    Read more...
    10/23/2007 11:14:41 PM Category .Net General
  • Monitoring File System Events

    In .NET the FileSystemWatcher class from System.IO namespace provides easy way to do the same thing. A windows file system has many events associated with files and folders. They include creation, renaming, deletion, change etc...

    Read more...
    10/23/2007 11:12:32 PM Category .Net File System