asp.net高手请进: text(list<string>)是若干条新闻动态的集合,我要将其绑定到listview中
发布网友
发布时间:2022-04-27 14:13
我来回答
共7个回答
热心网友
时间:2022-04-27 15:42
假如 新闻有 内容(xxx) 和连接地址(yyy)2个属性
<asp:ListView ID="ListView1" runat="server">
<ItemTemplate>
<a href='<%# Eval("yyy") %>'><%# Eval("xx") %></a>
</ItemTemplate>
</asp:ListView>
后台 :
List<string> list=new List<string> ();
ListView1.DataSource = list;
ListView1.DataBind();
这个list 就是从数据库查出来的新闻的集合,list<>括号里应该是一个自定义的新闻类
包含内容和连接地址 2个属性的 这个string肯定不行的追问虽然我已经解决了,但是还是谢谢哈
热心网友
时间:2022-04-27 17:00
才一列 用Repeater不是更好。。。 建议
下面我学学ListView
// 前台代码
<asp:ListView ID="lvNews" runat="server">
<LayoutTemplate>
<ul>
<asp:PlaceHolder runat="server" ID="itemPlaceholder" />
</ul>
</LayoutTemplate>
<ItemTemplate>
<li> <a href="#">
<%# Container.DataItem %></a></li>
</ItemTemplate>
</asp:ListView>
// 后台代码
protected void Page_Load(object sender, EventArgs e)
{
if (IsPostBack) return;
List<string> newsList = new List<string>() {
"xxxxxx北京暴雨",
"xxxxxx北京看海",
"xxxxxx北京房山灾情严重",
"xxxxxx北京看海2",
};
lvNews.DataSource = newsList;
lvNews.DataBind();
}
热心网友
时间:2022-04-27 18:35
7周年金钥匙:120个
今天还没回答问题呢~回答就送20金钥匙
您目前的金钥匙数可免费抽奖3次
热心网友
时间:2022-04-27 20:26
配置一下listview就行
热心网友
时间:2022-04-27 22:34
I don't know!
热心网友
时间:2022-04-28 00:59
ds
热心网友
时间:2022-04-28 03:40
listview控件不是可以点属性设置的吗