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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T21:53:20+00:00 2026-05-23T21:53:20+00:00

<asp:TemplateField HeaderText=Select> <ItemTemplate> <asp:CheckBox ID=chkSelected runat=server Checked=false></asp:CheckBox> </ItemTemplate> </asp:TemplateField> elow code works fine but

  • 0
 <asp:TemplateField HeaderText="Select">
 <ItemTemplate>
 <asp:CheckBox ID="chkSelected" runat="server" Checked="false"></asp:CheckBox>
  </ItemTemplate>
 </asp:TemplateField>

elow code works fine but there is a bug :

if Employee object has return 5 rows and i am trying to checked the check box based on the ids but instead its just matching only the last id – it suppose to checked all 5 rows..

List<Employee> result = new List<Employee>();
long Id = (long)Session["Id"];
result = Employee.GetEmployeeById(Id);

foreach (GridViewRow row in gv.Rows)
{
   CheckBox chkBox = row.FindControl("chkSelected") as CheckBox;
   if (c != null)
   {
      if (result.Count > 0)
      {
          foreach (Employee item in result)
          {
             Label Id = row.FindControl("lblId") as Label;
             if (Id.Text == item.Id.ToString())
             {
                 chkBox.Checked = true;
             }
             else
             {
                chkBox.Checked = false;
             }
           }
       }
  • 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-23T21:53:20+00:00Added an answer on May 23, 2026 at 9:53 pm

    Look at your logic – you only have the one checkbox. You’re unchecking and checking the same control in the employee loop. Does each grid row have a checkbox that should be selected based on the condition the id exists in the employee list?

     foreach (GridViewRow row in gv.Rows)
        {
            Label Id = row.FindControl("lblId") as Label;
            var result = Employee.GetEmployeeById(Id.Text);
            if (result.Count > 0)
            {
                CheckBox chkBox = row.FindControl("chkSelected") as CheckBox;
                if (chkBox != null)
                {
                    chkBox.Checked = result.Any(x => x.Id.ToString() == Id.Text);
    
                }
            }
    
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Gridview <asp:GridView ID=GridView1 runat=server Width=400px AutoGenerateColumns=false OnSelectedIndexChanged=GridView1_SelectedIndexChanged1> <Columns> <asp:TemplateField> <ItemTemplate> <asp:CheckBox
<asp:UpdatePanel ID=asd runat=server> <ContentTemplate> <asp:GridView ID=gvUpdate runat=server> <Columns> <asp:TemplateField HeaderText=DATE> <ItemTemplate> <asp:Label ID=lblDate runat=server
<asp:GridView ID=GridView1 runat=server> <Columns> <asp:TemplateField HeaderText=FileName> <ItemTemplate> <asp:HyperLink ID=HyperLink1 runat=server NavigateUrl= Text=></asp:HyperLink> </ItemTemplate> </asp:TemplateField>
How can I disable a DropDownList in ASP.NET? Code: <asp:TemplateField HeaderText="Effective Total Hours"> <ItemTemplate>
I have this code <asp:GridView ID=gvCentersList runat=server AutoGenerateColumns=False DataKeyNames=CenterID DataSourceID=SqlDataSource1 CssClass=gv-classic> <Columns> <asp:TemplateField HeaderText=>
<asp:TemplateField HeaderText=Select One> <ItemTemplate> <input name=MyRadioButton type=radio /> </ItemTemplate> </asp:TemplateField> aspx.cs protected void Button1_Click(object
I have an asp.net GridView: <asp:TemplateField HeaderText=View Faktor ShowHeader=False Visible=True> <ItemTemplate> <asp:ImageButton ID=imgBtn1 CssClass=SelectRow
Here's my code: <asp:TemplateField HeaderText=* License Setup Date> <EditItemTemplate> <asp:RequiredFieldValidator ID=LicenseSetupDateRequired ErrorMessage=License Setup Date
Hi all; How to make inline eval if control ? <asp:TemplateField HeaderText=Name> <ItemTemplate> <%#
<asp:TemplateField HeaderText=Quantity ItemStyle-HorizontalAlign=Left HeaderStyle-HorizontalAlign=Left> <ItemTemplate> <%#GetQuantityRemaining((int) Eval(Id)) %> </ItemTemplate> <HeaderStyle HorizontalAlign=Left></HeaderStyle> <ItemStyle HorizontalAlign=Left></ItemStyle> </asp:TemplateField>

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.