假设我想Dictionary<string, string>
使用新的 ASP.NET 4.5 强类型数据绑定将泛型类型(此处:)绑定到中继器。
那我就不得不记下KeyValuePair<string, string>
Repeater的ItemType属性了。
<asp:Repeater id="rpCategories" runat="server" ItemType="System.Collections.Generic.KeyValuePair<string, string>">
这里有一个明显的问题:我不能在ItemType文本中使用<
or !>
怎么办?新的数据绑定模型是否可以以某种方式使用泛型?