随笔 - 36  文章 - 0  评论 - 1  阅读 - 41836

绑定Hashtable到DataList

Hashtable list = new Hashtable();
list.Add("ltp", "李天平");
list.Add("zs", "张三");
list.Add("ls", "李四");
this.DataList1.DataSource = list;
this.DataList1.DataBind();
复制代码
<asp:DataList ID="DataList1" runat="server">
    <HeaderTemplate>
        <table width="200">
            <tr>
                <td width="100">
                    ENGLISH
                </td>
                <td>
                    中文
                </td>
            </tr>
        </table>
    </HeaderTemplate>
    <ItemTemplate>
        <table width="200">
            <tr>
                <td width="100">
                    <%# ((DictionaryEntry)Container.DataItem).Key %>
                </td>
                <td>
                    <%# ((DictionaryEntry)Container.DataItem).Value %>
                </td>
            </tr>
        </table>
    </ItemTemplate>
</asp:DataList>
复制代码

 

posted on   非零  阅读(175)  评论(0编辑  收藏  举报
努力加载评论中...

点击右上角即可分享
微信分享提示