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 网站工具。请帮我找到我的问题的解决方案.....
您可能想要使用的是 Session 变量,这是使用一个变量跨页面使用数据的最简单方法。它可能如下所示:
Session("pstrLogin") = txtUername.text
在另一个页面上访问它。
strName = Session("pstrLogin").ToString()
希望这是你想要的。