datalist 不显示值
第一次接触datalist,遇一难题,望大师帮解决一下,就是为什么显示不了datalist中的表格和后台的值?我是这样写的:<body><formid="form1"ru...
第一次接触datalist,遇一难题,望大师帮解决一下,就是为什么显示不了datalist中的表格和后台的值?
我是这样写的:
<body>
<form id="form1" runat="server">
<div>
<asp:DataList ID="DataList1" runat="server">
<ItemTemplate>
<table>
<tr>
<td>
<asp:Label ID="Label1" runat="server" Text='<%#Eval("name") %>'></asp:Label>
</td>
<td>
<asp:Label ID="Label2" runat="server" Text='<%#Eval("sex") %>'></asp:Label>
</td>
<td>
<asp:Label ID="Label3" runat="server" Text='<%#Eval("old") %>'></asp:Label>
</td>
</tr>
</table>
</ItemTemplate>
</asp:DataList>
<%=why%>
</div>
</form>
</body>
后台这样写的:
public partial class datalist嵌套 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected string name = "名字";
protected string sex = "性别";
protected string old = "年龄";
protected string why = "希望不要只是我才能显示出来";
}
可是每次都是 "希望不要只是我才能显示出来" 能出现在页面上,我是参考网上代码写的,谢谢指点。
但是像下面这样绑定数剧之后,运行时还是报“DataBinding:“System.String”不包含名为“name”的属性”没有sex属性等,是什么原因呢?
string name = "名字";
string sex = "性别";
string old = "年龄";
List<String> ListInfos = new List<string>();
ListInfos.Add(name);
ListInfos.Add(sex);
ListInfos.Add(old);
this.DataList1.DataSource =ListInfos;
DataList1.DataBind(); 展开
我是这样写的:
<body>
<form id="form1" runat="server">
<div>
<asp:DataList ID="DataList1" runat="server">
<ItemTemplate>
<table>
<tr>
<td>
<asp:Label ID="Label1" runat="server" Text='<%#Eval("name") %>'></asp:Label>
</td>
<td>
<asp:Label ID="Label2" runat="server" Text='<%#Eval("sex") %>'></asp:Label>
</td>
<td>
<asp:Label ID="Label3" runat="server" Text='<%#Eval("old") %>'></asp:Label>
</td>
</tr>
</table>
</ItemTemplate>
</asp:DataList>
<%=why%>
</div>
</form>
</body>
后台这样写的:
public partial class datalist嵌套 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected string name = "名字";
protected string sex = "性别";
protected string old = "年龄";
protected string why = "希望不要只是我才能显示出来";
}
可是每次都是 "希望不要只是我才能显示出来" 能出现在页面上,我是参考网上代码写的,谢谢指点。
但是像下面这样绑定数剧之后,运行时还是报“DataBinding:“System.String”不包含名为“name”的属性”没有sex属性等,是什么原因呢?
string name = "名字";
string sex = "性别";
string old = "年龄";
List<String> ListInfos = new List<string>();
ListInfos.Add(name);
ListInfos.Add(sex);
ListInfos.Add(old);
this.DataList1.DataSource =ListInfos;
DataList1.DataBind(); 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询