Categories: XML

Declaring elements in a Document Type Defintion

To represent data in a consistent format, it needs to be given a meaningful structure. Here I discuss about Document Type Definition (DTD) which described the XML document.

Categories: C#.Net

Static Keyword, Static members, Static Constructor, Static Class in C#

C# class can contain any number of static members. In this example I explain about static keyword, different static members, static constructor, static class and how to create static class and when to use static members, static constructor and static classes.

Categories: C#.Net

Access Specifiers Or Access Modifiers in C#

Access Specifier or Access modifier determines scope of variable or method you created in your application. Here I discussed about various access specifiers or access modifiers in C#. Access specifiers or modifiers available in C# are public, private, protected, internal and protected internal. Here I explained each with example.

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.