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.
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.
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.
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.
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
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.
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.
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.
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.
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.