如何在asp.net中提取cookie中的特定信息

发布于 2024-11-05 20:31:56 字数 365 浏览 0 评论 0原文

我是一个初学者,正在使用 Visual Studio 2008 在 asp.net 平台上构建网站。我创建了一个基本的登录系统。现在我使用 cookie 来存储用户名,以便我可以使用它来访问相应的数据库。

例如。用户名 abc 登录。它被重定向到个人资料页面。现在我想在列表视图中显示他的个人资料详细信息,但无法做到。所以我想到使用存储在cookie中的用户名来填充SQL WHERE条件来搜索该人的表详细信息并将其填充到LIST VIEW中。

那么如何获取cookie信息呢?正如我所尝试的,但我立即访问它的所有信息,例如“2011年5月9日12:22:20 uid=abc”

如果有另一种方式在登录后显示特定注册用户的信息,请帮助我出去。

感谢U。

I am a beginner and working on building websites on asp.net platform in visual studio 2008. I have created a basic login system. Now I used cookie to store username in it so that I can use it to access the respective database.

For example. a person with username abc logins. It is redirected to profile page. Now here I want to show his profile details in a list view but could not do. So I thought to use username stored in the cookie to fill the SQL WHERE condition to search the table details of that person and fill it in the LIST VIEW.

So how can I get the cookie information. As I have tried but I access all the information of it at once like "9 may 2011 12:22:20 uid=abc"

If there is another way of showing the information of a particular registered user after he log in then please help me out.

Thanks to U.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

看海 2024-11-12 20:31:56

回答您的字面问题:

Response.Cookies("CookieName").Value

请记住,客户可以根据自己的喜好设置 cookie,因此这不是很安全。一个简单的解决方法是让 ASP.NET 处理 cookie 详细信息。如果您在 Session 上设置一个变量,例如:

Session["UserName"] = "Ani";

ASP.NET 将向客户端发送一个“会话 id”cookie,这是安全的。用户无法更改他的用户名:它仅存储在服务器上。

To answer your literal question:

Response.Cookies("CookieName").Value

Remember that the customer can set his cookie as he likes, so this isn't very secure. An easy fix is to let ASP.NET handle the cookie details. If you set a variable on the Sesssion, like:

Session["UserName"] = "Ani";

ASP.NET will send a "session id" cookie to the client, which is secure. And the user can't change his UserName: it's stored on the server only.

御守 2024-11-12 20:31:56

Session["UserName"].ToString() 应该给你 Ani :)

Session["UserName"].ToString() should give you Ani :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文