Saturday, 19 July 2014

Friday, 11 July 2014

What are the different coding standards used in c# projects

There are 3 types of naming convention pascal,hungarian and Camel. Pascal notation starts with all first letter of the word capital. For example "Customercode" where you can see "C" letter capital in both the words. Camel notation starts with all first letter capital except the first letter of  the first word. For example "customerCode", you can see the first letter "c"  small and...

Wednesday, 9 July 2014

How to read Xml File Using gridview in asp.net

How to read Xml File Using gridview in asp.netsource Of xml file<?xml version="1.0" encoding="utf-8" ?><EmployeeInformation>  <Employee>    <sno>101</sno>    <firstname>Pankaj </firstname>      <lastname>Lohani</lastname>     ...

what is Inheritance in C#

Inheritance Acquiring the properties of an existing class into a new class by establishing a parent–child relationship between classes is known as Inheritance.The big advantage of inheritance is reusability of code:using System;   using System.Collections.Generic;   using System.Linq;  ...

how to add image in Title bar

IntroductionThis article shows how to add an image to the title bar of your website.Step:1create simple aspx pageStep:2create icon that should be display in  title baradd icon to the  to the solution explore Then write link in head section to display the icon in the title bar <link...