我创建了新闻网站MVC
。我有搜索功能。
当Index
Action
ofSearch
Controller
被调用时,它从 获取记录database
,它返回Search View.
This Search View has AJAX Pager
for paging,当点击 Pager 的 Next 或 Previous 按钮时,向ofAJAX
发出请求。Paging Action
Search Controller
现在我不想再打电话给我的Database
. 我想使用在 of 期间获取Index action
的结果Search Controller
。
现在我已经使用了Session[""]
对象。
我想知道在这种情况下什么更适合用于状态管理。
从数据库中获取的结果可能在 1000-5000 左右ArticleName
,,ArticleShortDescription
(约 200 个字符)