Click here to Skip to main content
15,896,154 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i get this error on int empId = Convert.ToInt32(labelId.Text);
Unable to cast object of type 'System.Web.UI.WebControls.Label' to type
'System.IConvertible'.

C#
protected void LinkButton1_Click(object sender, EventArgs e)
        {
            try
            {
                int index = 0;

                LinkButton lb = (LinkButton) sender;
                GridViewRow row = (GridViewRow) lb.NamingContainer;
                if (row != null)
                {
                    index = row.RowIndex;
                }

                var labelId = (Label) NameDisplay.Rows[index].FindControl("labelGetId");
                labelId.Text = HiddenFieldID.Value;
                
                int empId = Convert.ToInt32(labelId.Text);
                using (var db = new knowitCVdbEntities())
                {

                    var theEmpl = (from
                                       p in db.EMPLOYEES
                                   where p.employee_id == empId
                                   select p).FirstOrDefault();

                    if (theEmpl != null)
                    {
                        theEmpl.firstname = TextBoxFirstName.Text;
                        theEmpl.lastname = TextBoxLastName.Text;


                    }

                }
            }
            catch (Exception x)
            {
                LabelError.Visible = true;
                LabelError.Text = x.Message;
            }
            

            }
        }
    }
Posted

1 solution

Why not just convert the empID from HiddenFieldID.Value instead of setting the label to that value then pulling it back out again? Seems like a lot of round-about for nothing...
 
Share this answer
 
Comments
Kurac1 12-May-13 9:44am    
its because i tryid out the code, but still get same , i hade first as u said now-

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900