Difference between HTML Controls and ASP.Net Standard Controls | HTML Controls vs. ASP.Net Controls
HTML Controls Controls HTML control runs at client side. controls run at server side. You can run HTML controls at server side by adding attribute runat=”server”. You can not run…
Difference Between ADO and ADO.Net | ADO vs. ADO.Net | A Comparison of ADO and ADO.Net
ADO : ActiveX Data Objects and are two different ways to access database in Microsoft. ADO ADO is base on COM : Component Object Modelling based. is based on CLR…
Difference between Panel and PlaceHolder Control | Panel Control vs. PlaceHolder Control in ASP.Net
Panel Control vs. PlaceHolder Control Panel Control PlaceHolder Control Panel Control does have its visual layout and used as the container for other controls. PlaceHolder control does not have…
How creating a configuration class speedup your c# web application ?
I was creating an application with n-tier design in mind. Actually this was just a conceptual n-tier, it would be more appropriate if I call it n-layered application as the…
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…
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…
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 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…
Understanding the Master Page concept
When you are thinking of developing a website the first thing that comes to your mind is the design of the website and how it would look to the end…