Click here to Skip to main content
15,878,809 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
how to slove this problam
C#
if (e.CommandName == "Update")
      {
          GridViewRow gvrow = (GridViewRow)((ImageButton)e.CommandSource).NamingContainer;
          TextBox txtbarndFaName = (TextBox)gvrow.FindControl("TFBrandFaNameedit");
          TextBox txtbarndEnName = (TextBox)gvrow.FindControl("TFBrandEnNameedit");
          DropDownList txttypepartEnName = (DropDownList)gvrow.FindControl("DDTypehardware");
          int a = int.Parse(txttypepartEnName.SelectedValue);
          SqlDupdate.UpdateParameters["FBrandFaName"].DefaultValue = txtbarndFaName.Text;
          SqlDupdate.UpdateParameters["FBrandEnName"].DefaultValue = txtbarndEnName.Text;
       SqlDupdate.UpdateParameters["FPartCatID"].DefaultValue = txttypepartEnName.SelectedValue.ToString();

          SqlDupdate.Update();
      }


this error:
System.NullReferenceException: Object reference not set to an instance of an object.

DropDownList txttypepartEnName = (DropDownList)row.FindControl("DDTypehardware

the type filed db is smallint.
how to convert SqlDupdate.UpdateParameters["FPartCatID"].DefaultValue = txttypepartEnName.SelectedValue.ToString();

to int.
Posted

1 solution

Check if your control is null before moving into the update.Its possible there is a row in your grid with a control that is null, so txttypepartEnName is null at some point.
 
Share this answer
 
Comments
saeed1364 11-Nov-12 12:41pm    
iam check. contorl is not null

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