可以在私有/公共属性中获取/设置会话变量吗?
private List<FileAttachment> fileAttachments;
public List<FileAttachment> FileAttachments
{
get
{
if (Session["key"] != null)
{
fileAttachments = (List<FileAttachment>)Session["key"];
}
return fileAttachments;
}
set
{
fileAttachments = value;
Session["key"] = fileAttachments;
}
}
这里的目标是我希望容器类(该用户控件的属性所在)能够List<T>
根据实体设置并显示存储在数据库中的现有附件。