C#
protected void imgbtn5_Click(object sender, EventArgs e)
{
Session["theme"] = lbl5.Text;
foreach (ListViewItem item in theme5.Items)
{
Label country = (Label)item.FindControl("lblcountry");
Session["country"] = country.ToString();
Label price = (Label)item.FindControl("lblprice");
Session["price"] = price.ToString();
}
}
这里因为 foreach 会话值再次变为空。请提出其他方法。
aspx
<asp:ListView ID="theme5" runat="server" DataSourceID="SqlDataSource5">
<ItemTemplate>
<asp:Label ID="lblcountry" runat="server" Text='<%#Eval("Country") %>' />
</ItemTemplate>
</asp:ListView>
在这里,我想获取我的标签文本值并将其传输到会话。我想有问题:
Label country = (Label)theme5.FindControl("lblcountry");
在这个国家,我在调试时发现空值。