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

Monday, 9 June 2014

How to Changing color of rows or a cell in gridview control of ASP.Net,change GridView Row Background Color ,Changing Gridview row color based on value in that row

Hai frnd this How to Changing color of rows or a cell in gridview control of ASP.NetIn  Head Section take the css color's and use it in RowDataBound<head runat="server">    <style type="text/css">            .teal   ...

Wednesday, 4 June 2014

binding a grid view for registration page ,ASP.net How to bind Datatable with Gridview Code 2014,how to bind gridview in asp.net c#

Gridview Dynamic Binding the data:In this example i am inserting data to database and using grid we are going to display the data in the Front-End .here i am using fields as sno, Firstname,Lastname,Emailid,Phoneno,Addresswhere i am using sno as auto generate column...