Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 asp.net mvc 网站的个人资料中为每个用户保存最近三个访问页面的最佳方法是什么?我想要像“www.booking.com”这样的东西,它会在他的个人资料中显示每个用户上次访问的酒店。
当您请求带有用户 ID 的新页面和带有日期时间的页面 url 时,您可以将记录插入表中。
在 UI 中,您可以根据用户 ID 和插入的日期时间字段加载最后 3 个 URL。