How to load value in textbox from database in asp net?
Answers
Answered by
0
Wrap your all statements in !IsPostBackcondition on page load.
protected void Page_Load(object sender, EventArgs e) { if(!IsPostBack) { // all statements } }
This will fix your issue.
protected void Page_Load(object sender, EventArgs e) { if(!IsPostBack) { // all statements } }
This will fix your issue.
Similar questions