Categories: Asp.Net

Features of ADO.NET

In this article I am discussing some features of ADO.NET: Those are Disconnected data architecture, Data cached, Data transfer format and Interaction with the database is done through data commands.

Categories: Asp.Net

Asp.Net Globalization and Localization using Local Resource files and Global Resource files

Explain the resources files in Asp.Net. How to accomplish the Localization and Globalization in Asp.Net by using Resources files. We can create the resources files locally and Globally. We can use Local resource files implicitly and explicitly. Here discussed about both pron and cons

Categories: Asp.Net

Asp.Net Globalization and Localization Introduction

Explains about localization and globalization concepts in asp.net. How to change culture in asp.net to display currency, date formats,...so on in based on culture selection. It also explains how to detect culture from user browser and setting the culture automatically.

Categories: Asp.Net

Listview Control in Asp.Net 3.5

This article explains about new asp.net control Listview. What are the advantages of Listview control as compared with other asp.net controls like Gridview, Repeater...etc. It also explains how to display the data using Listview in a flexible way.

Categories: Asp.Net

Asp.Net Output Cache File Dependency

This article discuss about Caching techniques and AddFileDependency in asp.Net. It explains about how to delete the cache if the data in file changes, that means for example if the cache depends on XML file, how to maintain synchronous between XML file and asp.net cache even though the data in the file changes regularly.

Categories: C#.Net

Nullable data types and ?? Operator in C#

This article provides brief idea about nullable data types in C# and how to handle nullable data types. This also discuss about how to replace null value and what happens if we assign null to value types and reference types.

Categories: C#.Net

Shadowing in C# using new keyword

This article explains about what is shadowing in C#.Net, when we need shadowing, what are the advantages of shadowing in .Net and how to hide base class methods in derived class. It discuss about shadowing in C# using new keyword.

Categories: C#.Net

Enum Type in C #

This article discuss about enumeration types in C#, what is enum type, where to use enumeration types, internal data storage mechanism of enumeration and how enumerations used for symbolic names.

Categories: C#.Net

Partial classes and Partial structures

Here we discuss about what is partial keyword in C#.Net and what are the advantages of partial keyword. And also discuss about what are the partial classes, partial structures and what are the advantages of each.

Categories: C#.Net

difference between By Value type and By Reference type

Here we discuss about what is meant by value type, reference types and what are the different value type data types are available in .Net and what are the different reference data types are available in .Net. It also discuss about what is the difference between By Value type and By Reference type.