在VB.Net中访问js localStorage存储的值
我有一个登录页面,将一些值存储到 localStorage (html5),然后继续到 VB.Net 页面。我正在寻找 VB 中的一种方法,可以读回这些存储的值并使它们成为 VB 变量。有什么想法吗?
I have a login page that stores a few values to localStorage (html5) then continues to a VB.Net page. I am looking for a method in VB that can read back those stored values and make them VB vars. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
VB.NET 代码隐藏在服务器上运行,无法直接访问浏览器的本地存储 API。
不过,您可以使用 JavaScript 轻松填写登录页面上的一些隐藏字段,这些字段将在提交时发布,并且可以从 .NET 页面的代码隐藏中读取。
像这样的东西(未经测试):
在.NET页面上,该值可以这样读取:
Request.Form("HIDDEN_FIELD_ID"
)(还有其他方法,但这个很容易掌握。)
请注意,用户可以访问(和修改)localStorage 中的登录数据,因此请确保不会造成安全风险。
The VB.NET code-behind is running on the server and has no direct access to the local storage API of the browser.
You can, however, easily fill some hidden fields on the login page, using JavaScript, which will be posted on submit and can be read from the code-behind of the .NET page.
Something like this (not tested):
On the .NET page the value can be read like:
Request.Form("HIDDEN_FIELD_ID"
)(There are other ways, but this one is easy to grasp.)
Be aware that login data in localStorage can be accessed (and modified) by the user, so make sure you are not creating a security risk.
此示例将上述概念与 VB 代码结合使用:
这是 html body 元素:
这是页面加载事件:
现在您的代码背后有可用的 localStorage 值。
This sample uses the above concept with VB Code:
Here is the html body element:
Here is the page load event:
Now your code behind has the localStorage value available to it.