Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have grid view and there is a link button inside it. the only thing that i want to do is to changing selected row background color. I mean as i click on the link button(Edit), the color of that row must be changed.I use this code but it doesn't work for me.I also have ID of my record from my command grid view. Can anybody help me?

code:

int idx = Convert.ToInt32(e.CommandArgument);

            idx = idx - (GridView3.PageSize * GridView3.PageIndex);

            int ID = (int)GridView3.DataKeys[idx].Value;

         //   GridView3.SelectedRowStyle[idx].backgroundColor= "White";
            Session["ID"] = ID;
            GridView3.EditRowStyle.BackColor = System.Drawing.Color.LightYellow; 

enter image description here

share|improve this question
is the Edit link button has a command Name property Value ? – M.Nour Berro Jan 9 at 7:33
I think no. It has only LinkButton1_Command in it's events to write our commands there. – Saeed Talaee Jan 9 at 7:36

1 Answer

If your Link Button has CommandName with "Edit" value then you can use GridView styles properties

..........
  </Columns>

       <selectedrowstyle backcolor="LightYellow"
         forecolor="DarkBlue"
         font-bold="true"/>  

     </asp:gridview>
share|improve this answer
Thank you for your answering. Is there any asp command to do that? Because i have the idx of that row. – Saeed Talaee Jan 9 at 7:44
I am not sure.. – M.Nour Berro Jan 9 at 7:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.