using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls;

Replace VIDEO_ID_1 , VIDEO_ID_2 , and VIDEO_ID_3 with the actual IDs of the videos you want to feature.

public partial class Videos : System.Web.UI.Page { protected List<Video> VideosList = new List<Video>();

// Bind videos to repeater VideoRepeater.DataSource = VideosList; VideoRepeater.DataBind(); }