我已经在名为“viewListNextWeek"的列表中保存了一些数据行。我想将此列表发送到下一个Razor页面,在那里我通过
return RedirectToPage("../Food/nextWeekFood");
基于this,我尝试过
HttpContext.Session.Set<List<reserveInfo>>("List", viewListNextWeek);
但我得到了错误
Error CS0308 The non-generic method 'ISession.Set(string, byte[])' cannot be used with type arguments
我也读了this,但我不太明白该怎么做。
1条答案
按热度按时间6pp0gazn1#
您可以创建一个扩展方法来将数据列表保存到会话中。请参考这个简单的演示:
然后使用此方法设置和获取会话: