{"id":258057,"date":"2024-05-28T14:47:11","date_gmt":"2024-05-28T14:47:11","guid":{"rendered":"https:\/\/namso-gen.co\/blog\/?p=258057"},"modified":"2024-05-28T14:47:11","modified_gmt":"2024-05-28T14:47:11","slug":"how-to-get-gridview-cell-value-in-asp-net-using-jquery","status":"publish","type":"post","link":"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/","title":{"rendered":"How to get GridView cell value in ASP.NET using jQuery?"},"content":{"rendered":"<p>The GridView control is one of the most popular controls in ASP.NET for displaying tabular data. Often, there arises a need to retrieve the cell values of a GridView using jQuery, a powerful JavaScript library. This article will guide you through the steps of achieving this functionality.<\/p>\n<p><b>Step 1: Attach a jQuery event handler to the GridView<\/b><\/p>\n<p>To start, you need to attach a jQuery event handler to the GridView control. This can be done by assigning a class or an ID attribute to the GridView, allowing you to target it using jQuery selectors.<\/p>\n<p><b><\/p>\n<p>Step 2: Handle the event and retrieve the cell value<\/p>\n<p><\/b><\/p>\n<p>Now that the event handler is attached to the GridView, you can handle the event and retrieve the cell value. In the event handler function, you can use the <code>closest()<\/code> and <code>find()<\/code> methods to traverse the DOM and locate the particular cell you want to retrieve the value from.<\/p>\n<p><code><br \/>\n\/\/ Attach a click event handler to the GridView<br \/>\n$(\"#myGridView\").on(\"click\", \"td\", function() {<br \/>\n  \/\/ Use jQuery methods to retrieve the cell value<br \/>\n  var cellValue = $(this).closest(\"tr\").find(\"td:eq(2)\").text();<br \/>\n  alert(cellValue);<br \/>\n});<br \/>\n<\/code><\/p>\n<p>In the above example, we are attaching a click event handler to the GridView. When a cell within the GridView is clicked, the event handler function will be executed. Inside the function, we use the <code>closest()<\/code> method to find the nearest parent <code>&lt;tr&gt;<\/code> element, then use the <code>find()<\/code> method to locate the specific cell using its index (in this case, the third cell with an index of 2). Finally, we retrieve the text value using the <code>text()<\/code> method and display it in an alert.<\/p>\n<p><b><\/p>\n<p>Step 3: Test and utilize the cell value<\/p>\n<p><\/b><\/p>\n<p>By following the above steps, you now have a way to get the GridView cell value using jQuery. Once you have retrieved the cell value, you can utilize it in various ways, such as performing calculations, updating the UI, or sending the value to the server-side for further processing.<\/p>\n<div id=\"ez-toc-container\" class=\"ez-toc-v2_0_62 counter-hierarchy ez-toc-counter ez-toc-grey ez-toc-container-direction\">\n<div class=\"ez-toc-title-container\">\n<p class=\"ez-toc-title \" >Table of Contents<\/p>\n<span class=\"ez-toc-title-toggle\"><a href=\"#\" class=\"ez-toc-pull-right ez-toc-btn ez-toc-btn-xs ez-toc-btn-default ez-toc-toggle\" aria-label=\"Toggle Table of Content\"><span class=\"ez-toc-js-icon-con\"><span class=\"\"><span class=\"eztoc-hide\" style=\"display:none;\">Toggle<\/span><span class=\"ez-toc-icon-toggle-span\"><svg style=\"fill: #999;color:#999\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"list-377408\" width=\"20px\" height=\"20px\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M6 6H4v2h2V6zm14 0H8v2h12V6zM4 11h2v2H4v-2zm16 0H8v2h12v-2zM4 16h2v2H4v-2zm16 0H8v2h12v-2z\" fill=\"currentColor\"><\/path><\/svg><svg style=\"fill: #999;color:#999\" class=\"arrow-unsorted-368013\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"10px\" height=\"10px\" viewBox=\"0 0 24 24\" version=\"1.2\" baseProfile=\"tiny\"><path d=\"M18.2 9.3l-6.2-6.3-6.2 6.3c-.2.2-.3.4-.3.7s.1.5.3.7c.2.2.4.3.7.3h11c.3 0 .5-.1.7-.3.2-.2.3-.5.3-.7s-.1-.5-.3-.7zM5.8 14.7l6.2 6.3 6.2-6.3c.2-.2.3-.5.3-.7s-.1-.5-.3-.7c-.2-.2-.4-.3-.7-.3h-11c-.3 0-.5.1-.7.3-.2.2-.3.5-.3.7s.1.5.3.7z\"\/><\/svg><\/span><\/span><\/span><\/a><\/span><\/div>\n<nav><ul class='ez-toc-list ez-toc-list-level-1 ' ><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-1\" href=\"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/#FAQs\" title=\"FAQs:\">FAQs:<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-2\" href=\"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/#1_Can_I_use_the_GridViews_column_name_instead_of_the_index_to_retrieve_the_cell_value_using_jQuery\" title=\"1. Can I use the GridView&#8217;s column name instead of the index to retrieve the cell value using jQuery?\">1. Can I use the GridView&#8217;s column name instead of the index to retrieve the cell value using jQuery?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-3\" href=\"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/#2_How_can_I_retrieve_the_cell_value_from_a_GridView_nested_inside_another_control\" title=\"2. How can I retrieve the cell value from a GridView nested inside another control?\">2. How can I retrieve the cell value from a GridView nested inside another control?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-4\" href=\"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/#3_Can_I_get_the_cell_value_of_a_specific_row_based_on_a_condition\" title=\"3. Can I get the cell value of a specific row based on a condition?\">3. Can I get the cell value of a specific row based on a condition?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-5\" href=\"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/#4_Is_it_possible_to_get_the_cell_value_asynchronously\" title=\"4. Is it possible to get the cell value asynchronously?\">4. Is it possible to get the cell value asynchronously?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-6\" href=\"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/#5_How_can_I_retrieve_the_cell_value_when_using_a_TemplateField_in_GridView\" title=\"5. How can I retrieve the cell value when using a TemplateField in GridView?\">5. How can I retrieve the cell value when using a TemplateField in GridView?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-7\" href=\"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/#6_Can_I_retrieve_the_cell_value_from_an_editable_GridView\" title=\"6. Can I retrieve the cell value from an editable GridView?\">6. Can I retrieve the cell value from an editable GridView?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-8\" href=\"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/#7_What_if_I_need_to_retrieve_the_cell_value_when_a_GridView_cell_is_edited\" title=\"7. What if I need to retrieve the cell value when a GridView cell is edited?\">7. What if I need to retrieve the cell value when a GridView cell is edited?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-9\" href=\"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/#8_Is_it_possible_to_retrieve_the_cell_value_from_a_dynamically_generated_GridView\" title=\"8. Is it possible to retrieve the cell value from a dynamically generated GridView?\">8. Is it possible to retrieve the cell value from a dynamically generated GridView?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-10\" href=\"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/#9_Can_I_use_a_different_JavaScript_library_instead_of_jQuery_to_achieve_the_same_functionality\" title=\"9. Can I use a different JavaScript library instead of jQuery to achieve the same functionality?\">9. Can I use a different JavaScript library instead of jQuery to achieve the same functionality?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-11\" href=\"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/#10_Can_I_retrieve_multiple_cell_values_from_a_GridView_using_a_single_event\" title=\"10. Can I retrieve multiple cell values from a GridView using a single event?\">10. Can I retrieve multiple cell values from a GridView using a single event?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-12\" href=\"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/#11_What_if_the_GridView_has_pagination_and_I_need_to_retrieve_cell_values_from_different_pages\" title=\"11. What if the GridView has pagination, and I need to retrieve cell values from different pages?\">11. What if the GridView has pagination, and I need to retrieve cell values from different pages?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-13\" href=\"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/#12_Is_there_a_way_to_retrieve_the_cell_value_without_using_jQuery\" title=\"12. Is there a way to retrieve the cell value without using jQuery?\">12. Is there a way to retrieve the cell value without using jQuery?<\/a><\/li><\/ul><\/nav><\/div>\n<h3><span class=\"ez-toc-section\" id=\"FAQs\"><\/span>FAQs:<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<h3><span class=\"ez-toc-section\" id=\"1_Can_I_use_the_GridViews_column_name_instead_of_the_index_to_retrieve_the_cell_value_using_jQuery\"><\/span>1. Can I use the GridView&#8217;s column name instead of the index to retrieve the cell value using jQuery?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p><\/p>\n<p>Yes, you can use the column name by replacing the <code>td:eq(2)<\/code> selector with the column&#8217;s class or ID attribute.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"2_How_can_I_retrieve_the_cell_value_from_a_GridView_nested_inside_another_control\"><\/span>2. How can I retrieve the cell value from a GridView nested inside another control?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p><\/p>\n<p>You can use the <code>closest()<\/code> method to traverse the DOM hierarchy until the parent GridView is found, and then use the same approach to retrieve the cell value.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"3_Can_I_get_the_cell_value_of_a_specific_row_based_on_a_condition\"><\/span>3. Can I get the cell value of a specific row based on a condition?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p><\/p>\n<p>Yes, you can use conditional statements or jQuery filtering methods to check if a certain condition is met and then retrieve the cell value accordingly.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"4_Is_it_possible_to_get_the_cell_value_asynchronously\"><\/span>4. Is it possible to get the cell value asynchronously?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p><\/p>\n<p>Yes, you can make an asynchronous call to the server-side using AJAX and retrieve the cell value dynamically.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"5_How_can_I_retrieve_the_cell_value_when_using_a_TemplateField_in_GridView\"><\/span>5. How can I retrieve the cell value when using a TemplateField in GridView?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p><\/p>\n<p>You can assign a class or ID attribute to the elements within the TemplateField, and then use jQuery selectors to retrieve the cell value.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"6_Can_I_retrieve_the_cell_value_from_an_editable_GridView\"><\/span>6. Can I retrieve the cell value from an editable GridView?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p><\/p>\n<p>Yes, you can retrieve the cell value even if the GridView is in edit mode by using appropriate selectors to target the edited cell.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"7_What_if_I_need_to_retrieve_the_cell_value_when_a_GridView_cell_is_edited\"><\/span>7. What if I need to retrieve the cell value when a GridView cell is edited?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p><\/p>\n<p>You can attach an event handler to the GridView&#8217;s edit event and retrieve the cell value on update or cancel.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"8_Is_it_possible_to_retrieve_the_cell_value_from_a_dynamically_generated_GridView\"><\/span>8. Is it possible to retrieve the cell value from a dynamically generated GridView?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p><\/p>\n<p>Yes, using jQuery event delegation, you can attach event handlers to dynamically generated GridViews and retrieve the cell value as usual.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"9_Can_I_use_a_different_JavaScript_library_instead_of_jQuery_to_achieve_the_same_functionality\"><\/span>9. Can I use a different JavaScript library instead of jQuery to achieve the same functionality?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p><\/p>\n<p>Yes, you can use other JavaScript libraries or plain JavaScript to achieve similar functionality. However, jQuery provides a concise and powerful syntax for DOM manipulation, making it an ideal choice.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"10_Can_I_retrieve_multiple_cell_values_from_a_GridView_using_a_single_event\"><\/span>10. Can I retrieve multiple cell values from a GridView using a single event?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p><\/p>\n<p>Yes, within the event handler function, you can retrieve multiple cell values from different columns by modifying the jQuery selectors accordingly.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"11_What_if_the_GridView_has_pagination_and_I_need_to_retrieve_cell_values_from_different_pages\"><\/span>11. What if the GridView has pagination, and I need to retrieve cell values from different pages?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p><\/p>\n<p>In such cases, you may need to use AJAX and server-side techniques to fetch the required data based on the selected rows or pages.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"12_Is_there_a_way_to_retrieve_the_cell_value_without_using_jQuery\"><\/span>12. Is there a way to retrieve the cell value without using jQuery?<span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p><\/p>\n<p>Yes, you can use pure JavaScript methods like <code>getElementById()<\/code> and DOM traversal techniques to retrieve the cell value, but it may require more code and effort compared to using jQuery.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The GridView control is one of the most popular controls in ASP.NET for displaying tabular data. Often, there arises a need to retrieve the cell values of a GridView using jQuery, a powerful JavaScript library. This article will guide you through the steps of achieving this functionality. Step 1: Attach a jQuery event handler to &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"How to get GridView cell value in ASP.NET using jQuery?\" class=\"read-more button\" href=\"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/#more-258057\">Read more<span class=\"screen-reader-text\">How to get GridView cell value in ASP.NET using jQuery?<\/span><\/a><\/p>\n","protected":false},"author":65,"featured_media":107420,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[86279],"tags":[],"class_list":["post-258057","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-learn","no-featured-image-padding"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to get GridView cell value in ASP.NET using jQuery?<\/title>\n<meta name=\"description\" content=\"The GridView control is one of the most popular controls in ASP.NET for displaying tabular data. Often, there arises a need to retrieve the cell values of\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to get GridView cell value in ASP.NET using jQuery?\" \/>\n<meta property=\"og:description\" content=\"The GridView control is one of the most popular controls in ASP.NET for displaying tabular data. Often, there arises a need to retrieve the cell values of\" \/>\n<meta property=\"og:url\" content=\"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/\" \/>\n<meta property=\"og:site_name\" content=\"Namso Gen Blog - Free Credit Card Generator [100% Valid]\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/synchronyfinancial\" \/>\n<meta property=\"article:published_time\" content=\"2024-05-28T14:47:11+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/namso-gen.co\/blog\/wp-content\/uploads\/2024\/03\/faq.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Timothy Mathis\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@synchrony\" \/>\n<meta name=\"twitter:site\" content=\"@synchrony\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Timothy Mathis\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/\"},\"author\":{\"name\":\"Timothy Mathis\",\"@id\":\"https:\/\/namso-gen.co\/blog\/#\/schema\/person\/ffa5be155490b2344e28f672fcc1e318\"},\"headline\":\"How to get GridView cell value in ASP.NET using jQuery?\",\"datePublished\":\"2024-05-28T14:47:11+00:00\",\"dateModified\":\"2024-05-28T14:47:11+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/\"},\"wordCount\":740,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/#organization\"},\"articleSection\":[\"Learn\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/\",\"url\":\"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/\",\"name\":\"How to get GridView cell value in ASP.NET using jQuery?\",\"isPartOf\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/#website\"},\"datePublished\":\"2024-05-28T14:47:11+00:00\",\"dateModified\":\"2024-05-28T14:47:11+00:00\",\"description\":\"The GridView control is one of the most popular controls in ASP.NET for displaying tabular data. Often, there arises a need to retrieve the cell values of\",\"breadcrumb\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/namso-gen.co\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to get GridView cell value in ASP.NET using jQuery?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/namso-gen.co\/blog\/#website\",\"url\":\"https:\/\/namso-gen.co\/blog\/\",\"name\":\"Namso Gen Blog - Free Credit Card Generator [100% Valid]\",\"description\":\"In Namso gen blog you can get many tips regarding to Credit cards, VCC, Credit card security etc. You can generate credit cards by using Namso-gen.co\",\"publisher\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/namso-gen.co\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/namso-gen.co\/blog\/#organization\",\"name\":\"Namso Gen Blog - Free Credit Card Generator [100% Valid]\",\"url\":\"https:\/\/namso-gen.co\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/namso-gen.co\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/namso-gen.co\/blog\/wp-content\/uploads\/2020\/07\/namso-gen-logo.png\",\"contentUrl\":\"https:\/\/namso-gen.co\/blog\/wp-content\/uploads\/2020\/07\/namso-gen-logo.png\",\"width\":500,\"height\":164,\"caption\":\"Namso Gen Blog - Free Credit Card Generator [100% Valid]\"},\"image\":{\"@id\":\"https:\/\/namso-gen.co\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/synchronyfinancial\",\"https:\/\/twitter.com\/synchrony\",\"https:\/\/www.youtube.com\/synchronyfinancial\",\"https:\/\/www.instagram.com\/synchrony\",\"https:\/\/www.linkedin.com\/company\/synchrony-financial\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/namso-gen.co\/blog\/#\/schema\/person\/ffa5be155490b2344e28f672fcc1e318\",\"name\":\"Timothy Mathis\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/namso-gen.co\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"caption\":\"Timothy Mathis\"},\"description\":\"Guest author Timothy Mathis has meticulously crafted and revised this article to the best of their knowledge and understanding. Readers are strongly advised to exercise caution, verify information independently, and rely on their own judgment when considering the information provided. Read more articles on Namso Gen here.\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to get GridView cell value in ASP.NET using jQuery?","description":"The GridView control is one of the most popular controls in ASP.NET for displaying tabular data. Often, there arises a need to retrieve the cell values of","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:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/","og_locale":"en_US","og_type":"article","og_title":"How to get GridView cell value in ASP.NET using jQuery?","og_description":"The GridView control is one of the most popular controls in ASP.NET for displaying tabular data. Often, there arises a need to retrieve the cell values of","og_url":"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/","og_site_name":"Namso Gen Blog - Free Credit Card Generator [100% Valid]","article_publisher":"https:\/\/www.facebook.com\/synchronyfinancial","article_published_time":"2024-05-28T14:47:11+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/namso-gen.co\/blog\/wp-content\/uploads\/2024\/03\/faq.png","type":"image\/png"}],"author":"Timothy Mathis","twitter_card":"summary_large_image","twitter_creator":"@synchrony","twitter_site":"@synchrony","twitter_misc":{"Written by":"Timothy Mathis","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/#article","isPartOf":{"@id":"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/"},"author":{"name":"Timothy Mathis","@id":"https:\/\/namso-gen.co\/blog\/#\/schema\/person\/ffa5be155490b2344e28f672fcc1e318"},"headline":"How to get GridView cell value in ASP.NET using jQuery?","datePublished":"2024-05-28T14:47:11+00:00","dateModified":"2024-05-28T14:47:11+00:00","mainEntityOfPage":{"@id":"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/"},"wordCount":740,"commentCount":0,"publisher":{"@id":"https:\/\/namso-gen.co\/blog\/#organization"},"articleSection":["Learn"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/","url":"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/","name":"How to get GridView cell value in ASP.NET using jQuery?","isPartOf":{"@id":"https:\/\/namso-gen.co\/blog\/#website"},"datePublished":"2024-05-28T14:47:11+00:00","dateModified":"2024-05-28T14:47:11+00:00","description":"The GridView control is one of the most popular controls in ASP.NET for displaying tabular data. Often, there arises a need to retrieve the cell values of","breadcrumb":{"@id":"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/namso-gen.co\/blog\/how-to-get-gridview-cell-value-in-asp-net-using-jquery\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/namso-gen.co\/blog\/"},{"@type":"ListItem","position":2,"name":"How to get GridView cell value in ASP.NET using jQuery?"}]},{"@type":"WebSite","@id":"https:\/\/namso-gen.co\/blog\/#website","url":"https:\/\/namso-gen.co\/blog\/","name":"Namso Gen Blog - Free Credit Card Generator [100% Valid]","description":"In Namso gen blog you can get many tips regarding to Credit cards, VCC, Credit card security etc. You can generate credit cards by using Namso-gen.co","publisher":{"@id":"https:\/\/namso-gen.co\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/namso-gen.co\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/namso-gen.co\/blog\/#organization","name":"Namso Gen Blog - Free Credit Card Generator [100% Valid]","url":"https:\/\/namso-gen.co\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/namso-gen.co\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/namso-gen.co\/blog\/wp-content\/uploads\/2020\/07\/namso-gen-logo.png","contentUrl":"https:\/\/namso-gen.co\/blog\/wp-content\/uploads\/2020\/07\/namso-gen-logo.png","width":500,"height":164,"caption":"Namso Gen Blog - Free Credit Card Generator [100% Valid]"},"image":{"@id":"https:\/\/namso-gen.co\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/synchronyfinancial","https:\/\/twitter.com\/synchrony","https:\/\/www.youtube.com\/synchronyfinancial","https:\/\/www.instagram.com\/synchrony","https:\/\/www.linkedin.com\/company\/synchrony-financial"]},{"@type":"Person","@id":"https:\/\/namso-gen.co\/blog\/#\/schema\/person\/ffa5be155490b2344e28f672fcc1e318","name":"Timothy Mathis","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/namso-gen.co\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"Timothy Mathis"},"description":"Guest author Timothy Mathis has meticulously crafted and revised this article to the best of their knowledge and understanding. Readers are strongly advised to exercise caution, verify information independently, and rely on their own judgment when considering the information provided. Read more articles on Namso Gen here."}]}},"_links":{"self":[{"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/posts\/258057","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/users\/65"}],"replies":[{"embeddable":true,"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/comments?post=258057"}],"version-history":[{"count":0,"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/posts\/258057\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/media\/107420"}],"wp:attachment":[{"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/media?parent=258057"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/categories?post=258057"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/namso-gen.co\/blog\/wp-json\/wp\/v2\/tags?post=258057"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}