I can display my data in my textbox, dropdownlist after retrieve data from sql database, but when i proceed with my update button, the information edited in the textbox or d
Wrap your all statements in !IsPostBack condition on page load.
!IsPostBack
protected void Page_Load(object sender, EventArgs e) { if(!IsPostBack) { // all statements } }
This will fix your issue.