c# – 强类型的数据绑定和泛型?

前端之家收集整理的这篇文章主要介绍了c# – 强类型的数据绑定和泛型?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
假设我想使用新的ASP.NET 4.5强类型数据绑定将通用类型(这里:Dictionary< string,string>)绑定到Repeater.

然后我必须放下KeyValuePair< string,string>作为中继器的ItemType属性.

<asp:Repeater id="rpCategories" runat="server" ItemType="System.Collections.Generic.KeyValuePair<string,string>">

这里有一个明显的问题:我不能使用<或>在ItemType文本内! 怎么会这样呢?使用泛型可能以某种方式使用新的数据绑定模型?

解决方法

这对我有用:

代码背后

protected void Page_Load(object sender,EventArgs e)
        {
           rpCategories.DataSource = new Dictionary<string,string>()
            {
                {"1","item"},{"2",{"3",};
        rpCategories.DataBind();
        }

标记

<asp:Repeater ID="rpCategories" runat="server" ItemType="System.Collections.Generic.KeyValuePair`2[System.String,System.String]">
        <ItemTemplate>
            <asp:Label ID="Label1" runat="server" Text='<%# Item.Key %>'></asp:Label>
        </ItemTemplate>
    </asp:Repeater>
原文链接:https://www.f2er.com/csharp/96408.html

猜你在找的C#相关文章