Reputation: 21
I'm new to C# and I want to know how to bind a FormView from the code behind with a datatable.
Upvotes: 2
Views: 2651
Reputation: 63562
formView.DataSource = dataTable; formView.DataBind();
Upvotes: 5