コード例 #1
0
 /// <summary>
 /// Gets all the students from the database and bind it into the Repeater.
 /// <paramref name="repeater">The repeater to be bound.</param>
 /// </summary>
 public void GetAllStudentsAndBindToRepeater(ref Repeater repeater)
 {
     repeater.DataSource = studentDAO.FindAll();
     repeater.DataBind();
 }