0
我有一個公共類和一個公共列表。如何訪問代碼後面的列表變量aspx頁面
public List<yahoo> yahooRec = new List<yahoo>();
public class yahoo
{
public string url { get; set; }
public string title { get; set; }
public string descripton { get; set; }
}
我的清單得到它的值在foreach循環中。我只是想用我的名單在一箇中繼器
<asp:Repeater id="Rep" runat="server">
<ItemTemplate>
<asp:HyperLink ID="HyperLink1" runat="server" NavigateUrl='<%= yahoorec.url %>' Text='<%= yahoorec.title %>' />
<p> <%= yahoorec.description %> </p>
</ItemTemplate>
</asp:Repeater>
但它不工作。任何人都可以幫助我嗎?