hiii,,,,well u can clear the textboxes on the click of the save button
like::::: TextBox1.text="";
if the insert query is properly fired thn u can use the above code..for e.g.
_______________
private void Button1_Click(object sender, System.EventArgs e)
{
create a connection///
try{
sql command ins = new sql command("insert statement......")
if (ins.ExecuteNonQuery()>0)
{
textbox1.text="";
}
else{......}
}
catch{......}
}
__________________________________
try it ,,,hope it wil wrk for u