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.
假设我的网站中有一个页面,其中包含一个成员列表(我所有成员的列表),我想在我的主页上显示前 5 名海报的名称(包括在成员列表页面上)。我将如何将这些数据从我的成员列表页面传递到我的主页?
您指的是跨页面发布(通过使用PreviousPage页面的属性可以完成)。检查微软的文章。
PreviousPage
祝你好运!
由于 HTTP 是无状态协议。您可以通过以下方式传递数据:
1: Using QuerySdatring like http://yourpageB?data1=1&data2=2 and retrieve these values in second page. 2. You can maintain session variables which takes help of cookies to store data in clients machine and can be retrieved later.