Posts

Showing posts with the label GridView

Insert Update Delete and Sorting In Grid view Control Without Db

< style type ="text/css">         body         {             font-family : Arial ;             font-size : 10pt ;         }         table         {             border : 1px solid #ccc ;         }         table th         {             background-color : #F7F7F7 ;             color : #333 ;             font-weight : bold ;         }         table th , table td         {             padding : 5px ;             border-color : #ccc ;         }     </ style > < asp : GridView ID ="grd" runat ="server" AllowPaging ="true" AllowSorting ="true" PageSize ="10"             AutoGenerateColumns ="false" ShowFooter ="true" DataKeyNames ="id" OnRowCancelingEdit ="grd_RowCancelingEdit"             OnRowDeleting ="grd_RowDeleting" OnRowEditing ="grd_RowEditing" OnRowUpdating ="grd_Row

Insert ,update,delete ,paging and sorting In to gridview

Image
Gridsorting.aspx < asp : GridView ID ="grd" runat ="server" AllowPaging ="true" AllowSorting ="true" PageSize ="10"             AutoGenerateColumns ="false" ShowFooter ="true"             DataKeyNames ="id" OnSorting ="grd_Sorting" OnRowEditing ="grd_RowEditing"             onrowupdating ="grd_RowUpdating" onrowcancelingedit ="grd_RowCancelingEdit"             onpageindexchanging ="grd_PageIndexChanging"             onrowdeleting ="grd_RowDeleting">             < Columns >                 < asp : TemplateField HeaderText ="Name" SortExpression ="name" FooterStyle-Width ="200px"                     ItemStyle-Width ="200px">                     < ItemTemplate >                         < asp : Label ID ="lblname" Text =' <% # Ev