数据库层的ValidateUser()方法会设置cookie吗?
我希望与数据库的所有交互都发生在数据库层上。因此,当使用会员 API 的 ValidateUser() 方法时,我会调用它。这会设置cookie还是需要在ui层调用它才能设置cookie?
I want all interaction with the db to occur on the db layer. So, when using the membership API's ValidateUser() method, I call down to it. Will this set the cookie or does it need to be called in the ui layer for a cookie to be set?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它需要在生成响应的地方完成,通常在页面类中。
所以它在数据库层不起作用。
It needs to be done somewhere where the Response is generated, which is generally in a page class.
So it won't work in a DB layer.