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.
我正在研究一个解决方案,其中我有一个显示我的记录列表的网格视图。当您单击一个时,您将被重定向到详细信息页面,我创建了一个仅存储 ID 的会话。一切正常。
我的问题是:如何获取新页面上的其余数据?有可能这样还是我需要将所有值存储在会话中?
尝试
Session.Add(ID, valueOfID);
您可以通过以下方式访问它:
string str = (string)Session[ID];