Interview Questions

What property must you set, and what method must you call in your code, in order to bind the data from some data source to the Repeater control?

ASP.NET and .NET WEB Questions and Answers


(Continued from previous question...)

What property must you set, and what method must you call in your code, in order to bind the data from some data source to the Repeater control?

You must set the DataMember property which Gets or sets the specific table in the DataSource to bind to the control and the DataBind method to bind data from a source to a server control. This method is commonly used after retrieving a data set through a database query.

(Continued on next question...)

Other Interview Questions