Click here to Skip to main content
Sign Up to vote bad
good
See more: ASP.NET
how to slove this problam
 
  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 11 Nov '12 - 5:10


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.
  Permalink  
Comments
saeed1364 - 11 Nov '12 - 12:41
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)

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 OriginalGriff 353
1 Sergey Alexandrovich Kryukov 138
2 Mohammed Hameed 123
3 Santhosh G_ 113
4 Ron Beyer 64
0 Sergey Alexandrovich Kryukov 8,266
1 OriginalGriff 6,516
2 CPallini 3,533
3 Rohan Leuva 2,703
4 Maciej Los 2,234


Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 11 Nov 2012
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid