spqueryオブジェクトを使用してリストからいくつかのアイテムを取得し、リピーターにデータを入力します。添付ファイルのURLを取得する必要があります。IncludeAttachmentUrlsをtrueに設定しましたが、リピーターで使用するフィールドの名前がわかりません。
SPWeb Web = SPContext.Current.Web;
SPList List = Web.Lists["LinksList"];
SPQuery Query = new SPQuery();
Query.Query = "<OrderBy><FieldRef Name='Title' Ascending='False' /></OrderBy>";
Query.IncludeAttachmentUrls = true;
RPTLinks.DataSource = List.GetItems(Query).GetDataTable();
RPTLinks.DataBind();