ujjwalmeshram
June 28th, 2008, 05:24 AM
hello all
I m new to asp.net. I m using .net 2.0
I am updating data in database, for that i changed data in controls of form such as text boxes and click On save Button but textbox1.text property does not showing changed text hence updation is not taking effect
protected void btnSave_Click(object sender, EventArgs e)
{
string fname = txtfname.Text;
string lname = txtlname.Text;
//method for update
updateData(fname,lname);
}
please help
I m new to asp.net. I m using .net 2.0
I am updating data in database, for that i changed data in controls of form such as text boxes and click On save Button but textbox1.text property does not showing changed text hence updation is not taking effect
protected void btnSave_Click(object sender, EventArgs e)
{
string fname = txtfname.Text;
string lname = txtlname.Text;
//method for update
updateData(fname,lname);
}
please help