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 Sergey Alexandrovich Kryukov 414
1 Arun Vasu 253
2 OriginalGriff 200
3 CPallini 163
4 Aarti Meswania 158
0 Sergey Alexandrovich Kryukov 10,169
1 OriginalGriff 7,749
2 CPallini 4,181
3 Rohan Leuva 3,482
4 Maciej Los 3,089


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