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 6026403
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T04:26:24+00:00 2026-05-23T04:26:24+00:00

I have two GridViews. One is Source GridView and another one is Destination GridView.

  • 0

I have two GridViews. One is Source GridView and another one is Destination GridView.
Two GridViews are loaded with some records.
In the Destination GridView, One CommandField Column is added which shows “Delete”.
Here I want to move one row from the Source GridView to the Destination GridView. Suppose if i dont want, I can remove the newly added record by clicking the Delete Command Field in the GridView.

Except the Deleting the Rows, I have completed the other things. How to delete the newly added records.
The DeleteCommand Field in the Destination Gridview is enabled only for the newly added records otherwise it should enabled false.
Any Suggestions.

  • 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-23T04:26:25+00:00Added an answer on May 23, 2026 at 4:26 am

    Do not add commandfield column rather add a templatefield. in that templatefield add a itemtemplate, an ImageButton and keep the enabled property of ImageButton as true for rows which are added from source grid and false for others.(This you can check by keeping a label in gridview which should be hidden and set its text to “true” for rows got from source grid)
    EXAMPLE :

       <asp:TemplateField HeaderText="Delete">
     <ItemTemplate>
     <asp:ImageButton ID="imgbtnDelete" ToolTip="Delete" runat="server" CommandArgument='<%# DataBinder.Eval(Container.DataItem,"SomeField") %>' CommandName="Delete" />
    </ItemTemplate>
    </asp:TemplateField>
    

    in CodeBehind

      protected void Grid_RowDataBound(object sender, GridViewRowEventArgs e)
    {
      Label lbl = (Label)e.Row.FindControl("lbl");
      ImageButton imgbtnDeleteUser = (ImageButton)e.Row.FindControl("imgbtnDelete");
      if (imgbtnDeleteUser != null && lbl.Text==true)
      {
            imgbtnDeleteUser.Enabled = true;    
      }
      else
      {
            imgbtnDeleteUser.Enabled = false;    
      }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have Two Labels such as FixedTotal and TotalPercent, One GridView which has One
I have a Gridview in which i have two templatefields of dropdownlist. I bound
Hello I have a gridView which I use to show some pictures on (small
I have two template fields in my data gridview. One template field is a
I have one GridView with 3 Column and 3 Rows I want to change
I have a GridView populated from an ObjectDataSource with two items in its DataKeyNames
I have a GridView bound to an ICollection<UserAnswer> that needs to show two columns:
I have two arrays of System.Data.DataRow objects which I want to compare. The rows
I have two identical tables and need to copy rows from table to another.
I have two classes, and want to include a static instance of one class

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.