Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6208017
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T05:44:09+00:00 2026-05-24T05:44:09+00:00

I have added a button column to a gridview. I am populating the gridview

  • 0

I have added a button column to a gridview. I am populating the gridview with a datable through code then binding the datable to the grid.

I need to now look at the first column of the data and check if the text of the column is “NA” if it is the button in that column has to be disabled…..

How can I accomplish this? I am populating the data from code and the button is preadded to the grid in the markup

<asp:GridView ID="GridView1" runat="server" OnRowCommand="GridView1_RowCommand">
    <Columns>
        <asp:ButtonField Text="Delete" />
    </Columns>
</asp:GridView>


GridView1.DataSource = dt;
GridView1.DataBind();
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T05:44:09+00:00Added an answer on May 24, 2026 at 5:44 am

    The best thing to do is implement the OnDataBinding method for a Button in a TemplateColumn.

    Eg:

    <asp:GridView ID="GridView1" runat="server" OnRowCommand="GridView1_RowCommand">
        <Columns>
            <asp:TemplateField>
                <ItemTemplate>
                    <asp:Button runat="server" ID="btnDelete" CommandName="Delete" 
                        Text="Delete" OnDataBinding="btnDelete_DataBinding" />
                </ItemTemplate>
            </asp:TemplateField>
        </Columns>
    </asp:GridView>
    

    Then in your codebehind implement your logic:

    protected void btnDelete_DataBinding(object sender, System.EventArgs e)
    {
        Button btn = (Button)(sender);
        btn.Enabled = !Eval("TheFieldInYourDataSourceToCompare").ToString().Equals("NA");
    }
    

    The advantage to doing it in this manner over the other posted answers:

    1. No code in your markup
    2. Code is localized to the Button control and can be reused if other Buttons require the same functionality.
    3. Comparing to the DataSource value and not what the visual output is (this could tie into business logic for both rendering and checking).

    Hope that helps.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have added some dynamic textboxes upon a button click. I need the values
Once the added button in grid(window control Grid, not Gridview or datagrid) is clicked,
How to get the Grid.Row Grid.Column from the added control? Basically I have 16
I have a Gridview with ImageButtons added to a column via a templatefield. I've
I have populated datagridview using the following method and I have added button column
I have a Repeater with a Button inside the ItemTemplate . I added the
I have a page with some dynamically added buttons. If you click a button
I have added some code which compiles cleanly and have just received this Windows
I have added a button to a template for a ListBoxItem. I want to
I have added button to datagrid view but when ever the function is called

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.