我正在尝试将其绑定到gridview ..
var source = from p in allComments
select new { p.Img, p.Name, p.Comment };
GridView1.DataSource = source;
GridView1.DataBind();
所有评论都有 但它不会绑定因为我的gridview允许分页。我读了一下这个问题,我发现绑定了gridview,我可以使用ObjectDataSource ...并返回一个数据集来绑定到gridview ..
我得到了gridview的标记(只是标记的一部分):
<asp:TemplateField HeaderText="#">
<HeaderStyle Width="500px" />
<ItemStyle Width="500px" Height="100px" />
<ItemTemplate>
<asp:Label ID="lblMessage" runat="server" Text='<%# Bind("Comment") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="#">
<HeaderStyle Width="100px" />
<ItemStyle Width="100px" Height="100px" />
<ItemTemplate>
<asp:Image ID="imgName" runat="server" imageUrl='<%# Bind("Img") %>'></asp:Image><br />
<asp:Hyperlink ID="hyperLink" runat="server" Text='<%# Bind("Name") %>' ></asp:Hyperlink>
</ItemTemplate>
</asp:TemplateField>
你怎么看......我应该使用objectdataSource吗?
答案 0 :(得分:1)
如果您使用ObjectDataSource
,那么Paging and Sorting
将自动生效。我建议你使用ObjectDataSource,因为它有许多你可以使用的功能,比如caching
等...
请查看此链接Displaying Data With the ObjectDataSource
有关ObjectDataSource http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.objectdatasource.aspx
的更多信息,请查看此处