{"id":127866,"date":"2023-05-04T12:25:59","date_gmt":"2023-05-04T06:55:59","guid":{"rendered":"https:\/\/www.vskills.in\/certification\/tutorial\/?page_id=127866"},"modified":"2024-04-12T14:15:22","modified_gmt":"2024-04-12T08:45:22","slug":"sorting-editing-and-deleting-with-the-gridview-2","status":"publish","type":"page","link":"https:\/\/www.vskills.in\/certification\/tutorial\/sorting-editing-and-deleting-with-the-gridview-2\/","title":{"rendered":"Sorting editing and deleting with the GridView"},"content":{"rendered":"\n<h4 class=\"wp-block-heading\"><strong>Sorting editing and deleting with the GridView<\/strong><\/h4>\n\n\n\n<p>The GridView control in ASP.NET provides built-in support for sorting, editing, and deleting data. Here is how you can implement these features:<\/p>\n\n\n\n<p>Sorting:<\/p>\n\n\n\n<p>Set the GridView control&#8217;s AllowSorting property to true.<\/p>\n\n\n\n<p>Set the SortExpression property for each column that you want to be sortable.<\/p>\n\n\n\n<p>Handle the Sorting event of the GridView control and set the SortDirection property of the event argument to Ascending or Descending, depending on the user&#8217;s selection.<\/p>\n\n\n\n<p>Editing:<\/p>\n\n\n\n<p>Set the GridView control&#8217;s AutoGenerateEditButton property to true.<\/p>\n\n\n\n<p>Handle the RowEditing event of the GridView control to set the EditIndex property to the index of the row being edited.<\/p>\n\n\n\n<p>Handle the RowCancelingEdit event of the GridView control to cancel the editing operation.<\/p>\n\n\n\n<p>Handle the RowUpdating event of the GridView control to update the data in the underlying data source.<\/p>\n\n\n\n<p>Deleting:<\/p>\n\n\n\n<p>Set the GridView control&#8217;s AutoGenerateDeleteButton property to true.<\/p>\n\n\n\n<p>Handle the RowDeleting event of the GridView control to delete the data from the underlying data source.<\/p>\n\n\n\n<p>Here is some sample code that demonstrates how to implement sorting, editing, and deleting with the GridView control:<\/p>\n\n\n\n<p>&lt;asp:GridView ID=&#8221;GridView1&#8243; runat=&#8221;server&#8221; AutoGenerateColumns=&#8221;False&#8221; AllowSorting=&#8221;True&#8221; AutoGenerateEditButton=&#8221;True&#8221; AutoGenerateDeleteButton=&#8221;True&#8221; OnSorting=&#8221;GridView1_Sorting&#8221; OnRowEditing=&#8221;GridView1_RowEditing&#8221; OnRowCancelingEdit=&#8221;GridView1_RowCancelingEdit&#8221; OnRowUpdating=&#8221;GridView1_RowUpdating&#8221; OnRowDeleting=&#8221;GridView1_RowDeleting&#8221;&gt;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; &lt;Columns&gt;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;asp:BoundField DataField=&#8221;ID&#8221; HeaderText=&#8221;ID&#8221; SortExpression=&#8221;ID&#8221; \/&gt;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;asp:BoundField DataField=&#8221;Name&#8221; HeaderText=&#8221;Name&#8221; SortExpression=&#8221;Name&#8221; \/&gt;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;asp:BoundField DataField=&#8221;Email&#8221; HeaderText=&#8221;Email&#8221; SortExpression=&#8221;Email&#8221; \/&gt;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; &lt;\/Columns&gt;<\/p>\n\n\n\n<p>&lt;\/asp:GridView&gt;<\/p>\n\n\n\n<p>protected void GridView1_Sorting(object sender, GridViewSortEventArgs e)<\/p>\n\n\n\n<p>{<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; \/\/ Set the sort direction based on the current sort direction<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; if (e.SortDirection == SortDirection.Ascending)<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; {<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; e.SortDirection = SortDirection.Descending;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; }<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; else<\/p>\n\n\n\n<p>&nbsp;&nbsp; &nbsp;{<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; e.SortDirection = SortDirection.Ascending;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; }<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; \/\/ Bind the data to the GridView control<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; BindData();<\/p>\n\n\n\n<p>}<\/p>\n\n\n\n<p>protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e)<\/p>\n\n\n\n<p>{<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; \/\/ Set the edit index to the index of the row being edited<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; GridView1.EditIndex = e.NewEditIndex;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; \/\/ Bind the data to the GridView control<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; BindData();<\/p>\n\n\n\n<p>}<\/p>\n\n\n\n<p>protected void GridView1_RowCancelingEdit(object sender, GridViewCancelEditEventArgs e)<\/p>\n\n\n\n<p>{<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; \/\/ Cancel the editing operation<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; GridView1.EditIndex = -1;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; \/\/ Bind the data to the GridView control<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; BindData();<\/p>\n\n\n\n<p>}<\/p>\n\n\n\n<p>protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)<\/p>\n\n\n\n<p>{<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; \/\/ Update the data in the underlying data source<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; \/\/ &#8230;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; \/\/ Cancel the editing operation<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; GridView1.EditIndex = -1;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; \/\/ Bind the data to the GridView control<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; BindData();<\/p>\n\n\n\n<p>}<\/p>\n\n\n\n<p>protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)<\/p>\n\n\n\n<p>{<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; \/\/ Delete the data from the underlying data source<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; \/\/ &#8230;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; \/\/ Bind the data to the GridView control<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; BindData();<\/p>\n\n\n\n<p>}<\/p>\n\n\n\n<p>private void BindData()<\/p>\n\n\n\n<p>{<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; \/\/ Bind the data to the GridView control<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; \/\/ &#8230;<\/p>\n\n\n\n<p>}<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Apply for ASP.NET Certification Now!!<\/h3>\n\n\n\n<p><a href=\"https:\/\/www.vskills.in\/certification\/certified-aspnet-programmer\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/www.vskills.in\/certification\/certified-aspnet-programmer<\/a><\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong><a href=\"https:\/\/www.vskills.in\/certification\/tutorial\/asp-net\/\" target=\"_blank\" rel=\"noreferrer noopener\">Back to Tutorial<\/a><\/strong><\/h4>\n","protected":false},"excerpt":{"rendered":"<p>Sorting editing and deleting with the GridView The GridView control in ASP.NET provides built-in support for sorting, editing, and deleting data. Here is how you can implement these features: Sorting: Set the GridView control&#8217;s AllowSorting property to true. Set the SortExpression property for each column that you want to be sortable. Handle the Sorting event&#8230;<\/p>\n","protected":false},"author":22,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"categories":[3339],"tags":[],"class_list":["post-127866","page","type-page","status-publish","hentry","category-asp-net-2"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Sorting editing and deleting with the GridView - Tutorial<\/title>\n<meta name=\"description\" content=\"Sorting editing and deleting with the GridView\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.vskills.in\/certification\/tutorial\/sorting-editing-and-deleting-with-the-gridview-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Sorting editing and deleting with the GridView - Tutorial\" \/>\n<meta property=\"og:description\" content=\"Sorting editing and deleting with the GridView\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.vskills.in\/certification\/tutorial\/sorting-editing-and-deleting-with-the-gridview-2\/\" \/>\n<meta property=\"og:site_name\" content=\"Tutorial\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/vskills.in\/\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-12T08:45:22+00:00\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/sorting-editing-and-deleting-with-the-gridview-2\/\",\"url\":\"https:\/\/www.vskills.in\/certification\/tutorial\/sorting-editing-and-deleting-with-the-gridview-2\/\",\"name\":\"Sorting editing and deleting with the GridView - Tutorial\",\"isPartOf\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#website\"},\"datePublished\":\"2023-05-04T06:55:59+00:00\",\"dateModified\":\"2024-04-12T08:45:22+00:00\",\"description\":\"Sorting editing and deleting with the GridView\",\"breadcrumb\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/sorting-editing-and-deleting-with-the-gridview-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.vskills.in\/certification\/tutorial\/sorting-editing-and-deleting-with-the-gridview-2\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/sorting-editing-and-deleting-with-the-gridview-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.vskills.in\/certification\/tutorial\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Sorting editing and deleting with the GridView\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#website\",\"url\":\"https:\/\/www.vskills.in\/certification\/tutorial\/\",\"name\":\"Tutorial\",\"description\":\"Vskills - A initiative in elearning and certification\",\"publisher\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.vskills.in\/certification\/tutorial\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#organization\",\"name\":\"Vskills\",\"url\":\"https:\/\/www.vskills.in\/certification\/tutorial\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.vskills.in\/certification\/tutorial\/wp-content\/uploads\/2017\/07\/vskills-min-logo.jpg\",\"contentUrl\":\"https:\/\/www.vskills.in\/certification\/tutorial\/wp-content\/uploads\/2017\/07\/vskills-min-logo.jpg\",\"width\":73,\"height\":55,\"caption\":\"Vskills\"},\"image\":{\"@id\":\"https:\/\/www.vskills.in\/certification\/tutorial\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/vskills.in\/\",\"https:\/\/x.com\/vskills_in\",\"https:\/\/www.linkedin.com\/company-beta\/1371554\/\",\"https:\/\/www.youtube.com\/channel\/UCMWnscxPwRF_PqXo9B7q_Tw\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Sorting editing and deleting with the GridView - Tutorial","description":"Sorting editing and deleting with the GridView","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.vskills.in\/certification\/tutorial\/sorting-editing-and-deleting-with-the-gridview-2\/","og_locale":"en_US","og_type":"article","og_title":"Sorting editing and deleting with the GridView - Tutorial","og_description":"Sorting editing and deleting with the GridView","og_url":"https:\/\/www.vskills.in\/certification\/tutorial\/sorting-editing-and-deleting-with-the-gridview-2\/","og_site_name":"Tutorial","article_publisher":"https:\/\/www.facebook.com\/vskills.in\/","article_modified_time":"2024-04-12T08:45:22+00:00","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/sorting-editing-and-deleting-with-the-gridview-2\/","url":"https:\/\/www.vskills.in\/certification\/tutorial\/sorting-editing-and-deleting-with-the-gridview-2\/","name":"Sorting editing and deleting with the GridView - Tutorial","isPartOf":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#website"},"datePublished":"2023-05-04T06:55:59+00:00","dateModified":"2024-04-12T08:45:22+00:00","description":"Sorting editing and deleting with the GridView","breadcrumb":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/sorting-editing-and-deleting-with-the-gridview-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.vskills.in\/certification\/tutorial\/sorting-editing-and-deleting-with-the-gridview-2\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/sorting-editing-and-deleting-with-the-gridview-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.vskills.in\/certification\/tutorial\/"},{"@type":"ListItem","position":2,"name":"Sorting editing and deleting with the GridView"}]},{"@type":"WebSite","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#website","url":"https:\/\/www.vskills.in\/certification\/tutorial\/","name":"Tutorial","description":"Vskills - A initiative in elearning and certification","publisher":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.vskills.in\/certification\/tutorial\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#organization","name":"Vskills","url":"https:\/\/www.vskills.in\/certification\/tutorial\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#\/schema\/logo\/image\/","url":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-content\/uploads\/2017\/07\/vskills-min-logo.jpg","contentUrl":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-content\/uploads\/2017\/07\/vskills-min-logo.jpg","width":73,"height":55,"caption":"Vskills"},"image":{"@id":"https:\/\/www.vskills.in\/certification\/tutorial\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/vskills.in\/","https:\/\/x.com\/vskills_in","https:\/\/www.linkedin.com\/company-beta\/1371554\/","https:\/\/www.youtube.com\/channel\/UCMWnscxPwRF_PqXo9B7q_Tw"]}]}},"_links":{"self":[{"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/pages\/127866","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/users\/22"}],"replies":[{"embeddable":true,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/comments?post=127866"}],"version-history":[{"count":2,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/pages\/127866\/revisions"}],"predecessor-version":[{"id":127869,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/pages\/127866\/revisions\/127869"}],"wp:attachment":[{"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/media?parent=127866"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/categories?post=127866"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.vskills.in\/certification\/tutorial\/wp-json\/wp\/v2\/tags?post=127866"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}