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

  • SEARCH
  • Home
  • 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 6895289
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T06:53:23+00:00 2026-05-27T06:53:23+00:00

I read some data from a table and after that I want to edit

  • 0

I read some data from a table and after that I want to edit it, and then insert edited data to the database. I wrote this code but after runing it, old data inserts into database.

What should I do?

Here is my code;

protected void Page_Load(object sender, EventArgs e)
{
       SqlCommand cmd = new SqlCommand();
   cmd.Connection = new SqlConnection(Class1.CnnStr);
   SqlDataReader reader;


   cmd.CommandText = "select ChequeNo,ChequeDate from table where Number=@Number";
   cmd.Connection.Open();
   cmd.Parameters.AddWithValue("@Number", Number_lbl.Text);
   reader = cmd.ExecuteReader();

   if (reader.Read())
   {

       ChequeNo_txt.Text = reader["ChequeNo"].ToString();
       ChequeDate_txt.Text = reader["ChequeDate"].ToString();
       reader.Close();
   }
   cmd.Connection.Close();
}

protected void SAVE_bt_Click(object sender, EventArgs e)
{
    SqlCommand cmd1 = new SqlCommand();
    cmd1.Connection = new SqlConnection(Class1.CnnStr);

    cmd1.Connection.Open();
    cmd1.Parameters.AddWithValue("@Number", Number_lbl.Text);
    cmd1.CommandText ="update table set chequeNo=@ChequeNo,ChequeDate=@ChequeDate 
     where Number=@Number";

    cmd1.Parameters.AddWithValue("@ChequeNo",ChequeNo_txt.Text);
    cmd1.Parameters.AddWithValue("@ChequeDate", ChequeDate_txt.Text);
    cmd1.ExecuteNonQuery();

}
  • 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-05-27T06:53:24+00:00Added an answer on May 27, 2026 at 6:53 am

    You should only read from database if !Page.IsPostback:

    if (!IsPostBack)
       SqlCommand cmd = new SqlCommand();
       cmd.Connection = new SqlConnection(Class1.CnnStr);
       SqlDataReader reader;
    
    
       cmd.CommandText = "select ChequeNo,ChequeDate from table where Number=@Number";
       cmd.Connection.Open();
       cmd.Parameters.AddWithValue("@Number", Number_lbl.Text);
       reader = cmd.ExecuteReader();
    
       if (reader.Read())
       {
    
           ChequeNo_txt.Text = reader["ChequeNo"].ToString();
           ChequeDate_txt.Text = reader["ChequeDate"].ToString();
           reader.Close();
       }
       cmd.Connection.Close();
    }
    

    Otherwise you are overwriting all changes and bind the controls to the old values.

    http://msdn.microsoft.com/en-us/library/system.web.ui.page.ispostback.aspx

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I wrote a windows service using VB that read some legacy data from Visual
I am building application that required some data from iPhone's Call log(read only). The
I have to read data from some files and insert the data into different
I need to read some data from an input file and plot a graph
I've recently written a piece of code to read some data from a file,
I have been tasked to read in some data from some weird old system.
I'm trying to read in some sample data from an XML file in a
How to read data from Bar Code Scanner in .net windows application? Can some
This is a simple example. I want to insert data in Table1 (Name, Age,
I have a silverlight 3 application, that fetches some simple data from a ms-sql-server

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.