I want to change the text of databound textbox inside a formview and show the change inline in textbox(not just do this in behind with FIND CONTROL and TextBox Class). All i Know is Until This :
TextBox TxtNew = (TextBox)FormViewbla.FindControl("Txt_blabla");
TxtNew.Text = "some bla";
NOW how can i put TxtNew text in my Txt_blabla TextBox in FormView?