从经典 ASP 页面访问 ASP.NET 成员资格存储过程

发布于 2024-07-23 20:07:01 字数 173 浏览 9 评论 0原文

我有一个需要登录功能的经典 asp 网站。 有一个 ASP.NET 管理站点,将在其中设置登录。 我正在考虑使用 ASP.NET 会员资格来管理/存储登录信息,并在我的 ASP 站点上通过存储过程访问数据。 我在这里是自找麻烦吗? 有没有人成功地做到了这一点,或者有人可以在我开始之前将这个想法扼杀在萌芽状态吗? 谢谢!!

I have a classic asp site that requires login functionality. There is an ASP.NET administrative site where logins will get set up. I'm thinking about using ASP.NET Membership to manage/store the login information, and on my ASP site access the data through the Stored Procedures. Am I asking for trouble here? Has anybody successfully done this, or can anybody nip this idea in the bud before I get started? Thanks!!

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

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

发布评论

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

评论(1

玩世 2024-07-30 20:07:01

ASP.NET 成员资格提供程序已经为您构建了存储过程。 如果您可以访问设置成员身份的数据库,则可以直接访问这些存储过程。

编辑:找到我这样做时使用的文章。

这是使用 COM+“Hack”本地执行此操作的方法。摘自 ASP.NET 论坛。 它通向此处。

这就是斯科特的方式Guthrie 建议这样做。(在 ASP.NET 1.1 和 2.0+ 之间,但共享单个 cookie 的总体思路相同。)

The ASP.NET membership provider already builds the Stored procedures for you. If you can access the DB where the membership is setup, you can directly access those stored procedures.

EDIT: Found the articles I used when I did this.

This is how you do it natively using a COM+ 'Hack'. Taken from the ASP.NET forums. It leads here.

This is how Scott Guthrie suggests it. (Between ASP.NET 1.1 and 2.0+, but it's the same overall idea of sharing a single cookie.)

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