Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7829037
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T10:35:30+00:00 2026-06-02T10:35:30+00:00

I am getting Object reference not set to an instance of an object error

  • 0

I am getting “Object reference not set to an instance of an object” error while inserting/updating data into a sql server database from gridview . Anybody please help .

protected void GridAllStore_RowCommand(object sender, GridViewCommandEventArgs e)
    {
        storelocatorDataSetTableAdapters.storedbTableAdapter tastoreInsert = new storelocatorDataSetTableAdapters.storedbTableAdapter();
        if (e.CommandName.Equals("Insert"))
        {
            TextBox txtNewName = new TextBox();
            TextBox txtNewContact = new TextBox();
            TextBox txtNewAddress = new TextBox();
            txtNewName = (TextBox)GridAllStore.FooterRow.FindControl("txtNewName");
            txtNewContact = (TextBox)GridAllStore.FooterRow.FindControl("txtNewContact");
            txtNewAddress = (TextBox)GridAllStore.FooterRow.FindControl("txtNewAddress");
            tastore.Insert(txtNewName.Text, txtNewContact.Text, txtNewAddress.Text);    
            FillGrid();          
        }
    }

Here is the error message:

Object reference not set to an instance of an object.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.

Source Error:

Line 107: txtNewContact = (TextBox)GridAllStore.FooterRow.FindControl(“txtNewContact”);
Line 108: txtNewAddress = (TextBox)GridAllStore.FooterRow.FindControl(“txtNewAddress”);
Line 109: tastore.Insert(txtNewName.Text, txtNewContact.Text, txtNewAddress.Text);
Line 110: FillGrid();
Line 111: }

Source File: C:\Users\DELL\Documents\Visual Studio 2010\Projects\WebApplication1\WebApplication1\AdminPanel.aspx.cs Line: 109

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-02T10:35:31+00:00Added an answer on June 2, 2026 at 10:35 am

    FindControl can return null, when you access Text property of null object exception will throw. you can check null before access Text property.

            var txtNewNameTb = (TextBox)GridAllStore.FooterRow.FindControl("txtNewName");
            var txtNewContactTb = (TextBox)GridAllStore.FooterRow.FindControl("txtNewContact");
            var txtNewAddressTb = (TextBox)GridAllStore.FooterRow.FindControl("txtNewAddress");
    
            if (txtNewNameTb == null || txtNewContactTb == null || txtNewAddressTb  == null) { return; }
    
            if(tastore == null)  { return; }
    
            tastore.Insert(txtNewNameTb.Text, txtNewContactTb.Text, txtNewAddressTb.Text);    
    
            FillGrid();          
    

    In your ASPX FooterTemplate there should be a 3 Text Boxes like below.

    <FooterTemplate> 
    <asp:TextBox ID="txtNewName" runat="server" >
    </asp:TextBox> 
    <asp:TextBox ID="txtNewContact" runat="server" >
    </asp:TextBox> 
    <asp:TextBox ID="txtNewAddress" runat="server" >
    </asp:TextBox> 
    </FooterTemplate> 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm getting the error Object reference not set to an instance of an object.
I'm getting the NRE error that says: Object reference not set to an instance
I'm getting the 'Object reference not set to an instance of an object.' error
I am getting an error which says object reference not set to instance of
i keep getting this error message: Object reference not set to an instance of
I'm getting an Object reference not set to an instance of an object error
I am getting the Object reference not set to an instance of an object.
I have been getting an error in VB .Net object reference not set to
We started getting the 'Object reference not set to an instance of an object'
im getting the Object reference not set to an instance of an object for

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.