将NameValueCollection绑定到GridView
本文关键字:GridView 绑定 NameValueCollection | 更新日期: 2023-09-27 17:47:49
我应该使用什么类型的集合将NameValue集合转换为可绑定到GridView?直接做的时候没用。
aspx.cs中的代码
private void BindList(NameValueCollection nvpList)
{
resultGV.DataSource = list;
resultGV.DataBind();
}
aspx中的代码
<asp:GridView ID="resultGV" runat="server" AutoGenerateColumns="False" Width="100%">
<Columns>
<asp:BoundField DataField="Key" HeaderText="Key" />
<asp:BoundField DataField="Value" HeaderText="Value" />
</Columns>
</asp:GridView>
任何小费都欢迎。谢谢X.
你能使用Dictionary<字符串,字符串>而不是NameValueCollection。由于Dictionary<T、 T>实现IEnumerable,您可以按如下方式使用LINQ:
resultGV.DataSource = from item in nvpDictionary
select new { Key = item.Key, Value = item.Value };
resultGV.DataBind();
[EDIT]实际上,您可以直接使用Dictionary作为:
resultGV.DataSource = nvpDictionary;
resultGV.DataBind();
如果它没有按照您想要的方式映射键/值,您可以随时返回LINQ。LINQ还允许您将字段重命名为您想要的任何字段。
[EDIT]如果您不能更改为使用Dictionary<T、 T>,在方法中将NameValueCollection作为Dictionary进行复制并绑定到它。
private void BindList(NameValueCollection nvpList)
{
Dictionary<string,string> temp = new Dictionary<string,string>();
foreach (string key in nvpList)
{
temp.Add(key,nvpList[key]);
}
resultGV.DataSource = temp;
resultGV.DataBind();
}
如果你经常这样做,你可以写一个扩展方法来转换为Dictionary,并使用它
public static class NameValueCollectionExtensions
{
public static Dictionary<string,string> ToDictionary( this NameValueCollection collection )
{
Dictionary<string,string> temp = new Dictionary<string,string>();
foreach (string key in collection)
{
temp.Add(key,collection[key]);
}
return temp;
}
}
private void BindList(NameValueCollection nvpList)
{
resultGV.DataSource = nvpList.ToDictionary();
resultGV.DataBind();
}
这有点棘手,因为枚举器只返回键。但是,您可以使用Container.DataItem获取Key值,然后查找NameValueCollection以获取值:
<asp:GridView id="gv" runat="server" AutoGenerateColumns="false">
<Columns>
<asp:TemplateField HeaderText="Key">
<ItemTemplate><%# Container.DataItem %></ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Value">
<ItemTemplate>
<%# ((NameValueCollection)gv.DataSource)[(string)Container.DataItem] %>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
最后,我使用了扩展实现中建议的解决方案,但没有扩展本身。
private void BindList(NvpList nvpList)
{
IDictionary dict = new Dictionary<string, string>();
foreach (String s in nvpList.AllKeys)
dict.Add(s, nvpList[s]);
resultGV.DataSource = dict;
resultGV.DataBind();
}
也许可以做一些静态的助手类,在一个地方而不是多个地方为我做翻译。这个扩展非常方便…:-)
谢谢。X.
如果您有一个嵌套的Repeater
(或者GridView
,我相信也是),您需要将Mark Brackett的答案更改为这样,否则您将得到一个运行时错误,无法找到名为rpt的控件。
<asp:Repeater ID="rpt" runat="server">
<ItemTemplate>
<li>
<%# Container.DataItem %>:
<%# ((NameValueCollection)((Repeater)Container.Parent).DataSource)[(string)Container.DataItem] %>
</li>
</ItemTemplate>
</asp:Repeater>
我发现最好使用StringDictionary进行数据绑定&访问密钥&值
Dim sDict as New StringDictionary
sDict.Add("1","data1")
sDict.Add("2","data2")
sDict.Add("3","data3")
...
CheckBoxList1.DataSource = sDict
CheckBoxList1.DataValueField = "key"
CheckBoxList1.DataTextField = "value"
CheckBoxList1.DataBind()
我也遇到过类似的问题,涉及到将Dictionary(实际上是SortedDictionary)绑定到GridView并希望重命名列。最终对我有用的是一些更容易阅读的东西。
<asp:GridView ID="gv" runat="server" AutoGenerateColumns="False">
<Columns>
<asp:TemplateField HeaderText="Attribute">
<ItemTemplate>
<%# ((KeyValuePair<string,string>)Container.DataItem).Key %>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Value">
<ItemTemplate>
<%# ((KeyValuePair<string,string>)Container.DataItem).Value %>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
这是通过获取Container.DataItem(GridView试图显示的当前项),将其强制为其实际数据类型(KeyValuePair),然后显示该项所需的属性来实现的。