Computer Science, asked by hgfyduhbhj2359, 1 year ago

How to load value in textbox from database in asp net?

Answers

Answered by SaifAli339
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.

Similar questions