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 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…
Verbatim Literals in ASP.Net and C#
Have you ever come up with standard where you wanted to access a path in a program. Lets just say : d:\binoy\jpeg\website\ If I want…
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…
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…
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…
Create your first web form using Master Page
In the previous tutorial, you learn about making your first master Page. Master Pages are like blueprints that we will be using to generate similar copies of web pages. So,…
Create your first Master Page
I will be keep things here really simple. Even a person with no experience in .net should be able to follow this tutorial. I will be using Visual Studio 2012.…