How to create XML document programatically in c# | Error Log Creator using Csharp in XML
While working in .net for some time, i today came up with a requirement in which i had to create a error logging system for an n-tier application. I could…
Ever wondered why we do not use numeric fields as primary key ?
Each one of us might be familiar that when we create a 'Department' table we surely create a column named 'DeptId' which will end up as our primary key column.…
Difference between REST and SOAP | REST vs. SOAP
REST vs. SOAP REST SOAP Stands For : REST Stands for “Representational State Transfer”. SOAP Stands for “Simple Object Access Protocol”. Type REST is an architecture style and…
Microsoft intermediate language in .NET | Understanding MSIL
It's always good to be clear with the basics before you take the dive into .NET field. MSIL also many times referred to as CIL(Common Intermediate Language) or just IL(Intermediate…
Things that you did not know about Master pages in ASP.NET
Fer unknown facts about Master pages in One cannot cache a Master Page with the OutputCache directive. One cannot apply a theme to a Master Page. The content page…
LINQ | Advantages Of LINQ | Why .net Developers prefer LINQ
What is LINQ : LINQ stands for “Language Integrated Query” . LINQ is one of the components of Microsoft’s .NET Framework that provides technique for querying data that supports not…
Difference between JSON and XML | JSON vs. XML
Difference between JSON and XML JSON XML Stands For JSON : "JavaScript Object Notation". XML: "Extensible Markup Language". Extended From JSON is extended from JavaScript. XML is extended from SGML…
Difference between User Control and Custom Control | User Control vs. Custom Control
Difference between User Control and Custom Control User Controls Custom Controls User Controls are easy to use. Custom Controls are difficult to use. it has limited support. it has full…
Difference between Data Reader and Data Set in Asp.Net | Data Reader vs. Data Set
Difference between Data Reader and Data Set in Data Reader Data Set Connection Mode Data Reader is directly connected to database system works in connected mode. Data Set is generally…